mirror of https://github.com/Nevysha/Cozy-Nest.git
21 lines
517 B
TypeScript
21 lines
517 B
TypeScript
import { extendTheme } from '@chakra-ui/react'
|
|
|
|
|
|
import {inputTheme, numberInputTheme} from "./Input.theme";
|
|
import {tabsTheme} from "./Tabs.theme";
|
|
import {checkboxTheme, radioTheme} from "./Checkbox.theme";
|
|
import {modalTheme} from "./Modal.theme";
|
|
|
|
export const theme = extendTheme({
|
|
fontSizes: {
|
|
md: 'var(--body-text-size)',
|
|
},
|
|
components: {
|
|
Input: inputTheme,
|
|
Tabs: tabsTheme,
|
|
Checkbox: checkboxTheme,
|
|
NumberInput: numberInputTheme,
|
|
Radio: radioTheme,
|
|
Modal: modalTheme,
|
|
},
|
|
}) |