()
| 3 | import { CSSVariablesResolver, createTheme } from '@mantine/core' |
| 4 | |
| 5 | export const cssVariablesResolver: CSSVariablesResolver = () => ({ |
| 6 | variables: {}, |
| 7 | light: {}, |
| 8 | dark: {}, |
| 9 | }) |
| 10 | |
| 11 | export const theme = createTheme({ |
| 12 | primaryColor: 'blue', |
nothing calls this directly
no outgoing calls
no test coverage detected