Files
Open-Assistant/website/styles/Theme/colors.tsx
T
2023-01-03 22:48:21 -06:00

15 lines
219 B
TypeScript

export const colors = {
light: {
bg: "gray.100",
btn: "gray.50",
div: "white",
text: "black",
},
dark: {
bg: "gray.900",
btn: "gray.600",
div: "gray.700",
text: "gray.200",
},
};