mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 23:46:03 +01:00
22 lines
464 B
TypeScript
22 lines
464 B
TypeScript
import { CircularProgress, extendTheme, type ThemeConfig } from "@chakra-ui/react";
|
|
|
|
const config: ThemeConfig = {
|
|
initialColorMode: 'dark',
|
|
useSystemColorMode: false
|
|
}
|
|
|
|
export const theme = extendTheme({
|
|
config,
|
|
components: {
|
|
Progress: {
|
|
baseStyle: {
|
|
filledTrack: {
|
|
bg: 'blue.400'
|
|
},
|
|
track: {
|
|
bg: 'rgba(0, 0, 0, 0.6)'
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}) |