mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 07:27:33 +08:00
40 lines
831 B
JavaScript
40 lines
831 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
|
|
];
|
|
|
|
const defaultChartColors = [
|
|
'cc4a66',
|
|
'e3564a',
|
|
'fc892c',
|
|
'ffc349',
|
|
'4dd291',
|
|
'24ceb3',
|
|
'2ab4d0',
|
|
'065786',
|
|
'713670',
|
|
'8e1d51'
|
|
];
|
|
|
|
export default {
|
|
defaultColor: defaultColor,
|
|
allAccountColors: allAvailableColors,
|
|
defaultAccountColor: defaultColor,
|
|
allCategoryColors: allAvailableColors,
|
|
defaultCategoryColor: defaultColor,
|
|
defaultChartColors: defaultChartColors,
|
|
};
|