mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
26 lines
615 B
JavaScript
26 lines
615 B
JavaScript
const defaultColor = '000000';
|
|
const allAvailableColors = [
|
|
'000000', // black
|
|
'8e8e93', // gray
|
|
'ff3b30', // red
|
|
'ff2d55', // pink
|
|
'ff6b22', // deep orange
|
|
'ff9500', // orange
|
|
'ffcc00', // yellow
|
|
'cddc39', // lime
|
|
'009688', // teal
|
|
'4cd964', // green
|
|
'5ac8fa', // light blue
|
|
'2196f3', // blue
|
|
'673ab7', // deep purple
|
|
'9c27b0', // purple
|
|
];
|
|
|
|
export default {
|
|
defaultColor: defaultColor,
|
|
allAccountColors: allAvailableColors,
|
|
defaultAccountColor: defaultColor,
|
|
allCategoryColors: allAvailableColors,
|
|
defaultCategoryColor: defaultColor,
|
|
};
|