text Color

This commit is contained in:
Lucian Petri
2022-12-30 01:55:36 +02:00
parent a537a0ffa0
commit dcdcadecc4
+4 -2
View File
@@ -1,8 +1,10 @@
export const colors = {
light: {
bg: "gray.100"
bg: "gray.100",
text: "black"
},
dark: {
bg: "gray.900"
bg: "gray.900",
text: "white"
},
};