12345678910111213141516171819 |
- export const defaultTheme = {
- primary_color: "#1867c0",
- secondary_color: "#3a88bb",
- primary_text: "#1d1d1f",
- secondary_text: "#424245",
- info_color: "#0288d1",
- error_color: "#d32f2f",
- warning_color: "#ed6c02",
- success_color: "#2e7d32",
- font_family: `"Roboto", "Helvetica", "Arial", sans-serif, "twemoji mozilla"`,
- };
- export const defaultDarkTheme = {
- ...defaultTheme,
- primary_text: "#E8E8ED",
- secondary_text: "#bbbbbb",
- };
|