12345678910111213141516171819 |
- // 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`,
- };
- // dark mode
- export const defaultDarkTheme = {
- ...defaultTheme,
- primary_text: "#757575",
- secondary_text: "#637381",
- };
|