1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00
Files
Boostnote/browser/lib/consts.js
2016-05-08 02:49:19 +09:00

25 lines
363 B
JavaScript

const consts = {
FOLDER_COLORS: [
'#3460C7',
'#2BA5F7',
'#FF8E00',
'#E8D252',
'#3FD941',
'#1FAD85',
'#E10051',
'#B013A4'
],
FOLDER_COLOR_NAMES: [
'Cerulean Blue',
'Dodger Blue',
'Pizazz',
'Confetti',
'Emerald',
'Mountain Meadow',
'Razzmatazz',
'Violet Eggplant'
]
}
module.exports = consts