Files
ox_lib/web/src/theme/index.ts

22 lines
463 B
TypeScript
Raw Normal View History

2022-03-19 12:57:49 +01:00
import { CircularProgress, extendTheme, type ThemeConfig } from "@chakra-ui/react";
2022-03-13 22:30:57 +01:00
const config: ThemeConfig = {
initialColorMode: 'dark',
useSystemColorMode: false
}
2022-03-19 12:57:49 +01:00
export const theme = extendTheme({
config,
components: {
Progress: {
baseStyle: {
filledTrack: {
bg: 'green.400'
2022-03-19 12:57:49 +01:00
},
track: {
bg: 'rgba(0, 0, 0, 0.6)'
2022-03-19 12:57:49 +01:00
}
}
},
}
})