adding default text Color to Container

This commit is contained in:
Lucian Petri
2022-12-30 01:55:27 +02:00
parent b8f3fe9636
commit a537a0ffa0
@@ -4,7 +4,8 @@ import { colors } from "../colors"
const baseStyle = defineStyle(({colorMode}) => ({
minWidth: "100%",
bg: colorMode === "light" ? colors.light.bg : colors.dark.bg,
transition: "background-color 250ms ease-in"
transition: "background-color 250ms ease-in",
color: colorMode === "light" ? colors.light.text : colors.dark.text,
}))
export const containerTheme = defineStyleConfig({