_theme.tsx 466 B

12345678910111213141516171819
  1. // default theme setting
  2. export const defaultTheme = {
  3. primary_color: "#5b5c9d",
  4. secondary_color: "#9c27b0",
  5. primary_text: "#637381",
  6. secondary_text: "#909399",
  7. info_color: "#0288d1",
  8. error_color: "#d32f2f",
  9. warning_color: "#ed6c02",
  10. success_color: "#2e7d32",
  11. font_family: `"Roboto", "Helvetica", "Arial", sans-serif`,
  12. };
  13. // dark mode
  14. export const defaultDarkTheme = {
  15. ...defaultTheme,
  16. primary_text: "#757575",
  17. secondary_text: "#637381",
  18. };