mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
refactor(nui): Style adjustments
This commit is contained in:
@@ -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)'
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user