// Customize the preset colors as needed
// Supports named colors (e.g., 'orange', 'violet')
// Supports shorthand hex colors (e.g., '#ccc')
// Supports full hex colors (e.g., '#324ccd')
// Nate: this is my most used color set.
var presetColors = [
'orange',
'green',
'red',
'sandybrown',
'tomato',
'#324ccd', // Deep blue shade
'violet',
'turquoise'
];
module.exports = {
presetColors
};