sendou.ink/theme.ts
2021-04-03 23:55:58 +03:00

23 lines
616 B
TypeScript

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