mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-10 00:20:06 +08:00
15 lines
219 B
TypeScript
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",
|
|
},
|
|
};
|