refactor(nui): Style adjustments

This commit is contained in:
Luke
2022-03-19 12:57:49 +01:00
parent 65056114ba
commit 97be95fe35
4 changed files with 30 additions and 15 deletions

View File

@@ -1,8 +1,22 @@
import { extendTheme, type ThemeConfig } from "@chakra-ui/react";
import { CircularProgress, extendTheme, type ThemeConfig } from "@chakra-ui/react";
const config: ThemeConfig = {
initialColorMode: 'dark',
useSystemColorMode: false
}
export const theme = extendTheme({config})
export const theme = extendTheme({
config,
components: {
Progress: {
baseStyle: {
filledTrack: {
bg: 'blue.400'
},
track: {
bg: 'rgba(0, 0, 0, 0.6)'
}
}
},
}
})