mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
23 lines
321 B
JavaScript
23 lines
321 B
JavaScript
const consts = {
|
|
FOLDER_COLORS: [
|
|
'#E10051',
|
|
'#FF8E00',
|
|
'#E8D252',
|
|
'#3FD941',
|
|
'#30D5C8',
|
|
'#2BA5F7',
|
|
'#B013A4'
|
|
],
|
|
FOLDER_COLOR_NAMES: [
|
|
'Razzmatazz',
|
|
'Pizazz',
|
|
'Confetti',
|
|
'Emerald',
|
|
'Turquoise',
|
|
'Dodger Blue',
|
|
'Violet Eggplant'
|
|
]
|
|
}
|
|
|
|
module.exports = consts
|