2022-03-31 23:38:00 +08:00
|
|
|
// default theme setting
|
|
|
|
export const defaultTheme = {
|
|
|
|
primary_color: "#5b5c9d",
|
|
|
|
secondary_color: "#9c27b0",
|
|
|
|
primary_text: "#637381",
|
|
|
|
secondary_text: "#909399",
|
|
|
|
info_color: "#0288d1",
|
|
|
|
error_color: "#d32f2f",
|
|
|
|
warning_color: "#ed6c02",
|
|
|
|
success_color: "#2e7d32",
|
|
|
|
font_family: `"Roboto", "Helvetica", "Arial", sans-serif`,
|
|
|
|
};
|
2022-05-06 14:04:39 +08:00
|
|
|
|
|
|
|
// dark mode
|
|
|
|
export const defaultDarkTheme = {
|
|
|
|
...defaultTheme,
|
|
|
|
primary_text: "#757575",
|
|
|
|
secondary_text: "#637381",
|
|
|
|
};
|