sendou.ink/theme.ts
2020-12-17 14:25:33 +02:00

21 lines
514 B
TypeScript

export const theme = {
light: {
themeColorShade: "theme.600",
themeColorHex: "#79ff61", // light lime green
bgColor: "#eff0f3",
secondaryBgColor: "#FFFAFA",
textColor: "blackAlpha.900",
gray: "gray.600",
borderColor: "#2e466c",
},
dark: {
themeColorShade: "theme.200",
themeColorHex: "#79ff61", // light lime green
bgColor: "#031e3e",
secondaryBgColor: "#0e2a56",
textColor: "whiteAlpha.900",
gray: "gray.300",
borderColor: "#2e466c",
},
} as const;