mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
41 lines
998 B
TypeScript
41 lines
998 B
TypeScript
import type { ColorValue } from '@/core/color.ts';
|
|
|
|
const defaultColor: ColorValue = '000000';
|
|
|
|
export const DEFAULT_ICON_COLOR: ColorValue = defaultColor;
|
|
export const DEFAULT_ACCOUNT_COLOR: ColorValue = defaultColor;
|
|
export const DEFAULT_CATEGORY_COLOR: ColorValue = defaultColor;
|
|
|
|
const allAvailableColors: ColorValue[] = [
|
|
'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 const ALL_ACCOUNT_COLORS: ColorValue[] = allAvailableColors;
|
|
export const ALL_CATEGORY_COLORS: ColorValue[] = allAvailableColors;
|
|
|
|
export const DEFAULT_CHART_COLORS: ColorValue[] = [
|
|
'cc4a66',
|
|
'e3564a',
|
|
'fc892c',
|
|
'ffc349',
|
|
'4dd291',
|
|
'24ceb3',
|
|
'2ab4d0',
|
|
'065786',
|
|
'713670',
|
|
'8e1d51'
|
|
];
|