mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-29 16:30:24 +08:00
adding default text Color to Container
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user