mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-28 21:34:41 -05:00
23 lines
616 B
TypeScript
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;
|