Files
full-stack-fastapi-template/frontend/src/theme.tsx

28 lines
437 B
TypeScript
Raw Normal View History

import { extendTheme } from '@chakra-ui/react'
const theme = extendTheme({
2024-03-08 14:58:36 +01:00
colors: {
ui: {
main: '#009688',
secondary: '#EDF2F7',
success: '#48BB78',
danger: '#E53E3E',
},
2024-03-08 14:58:36 +01:00
},
components: {
Tabs: {
variants: {
enclosed: {
tab: {
_selected: {
color: 'ui.main',
},
2024-03-08 14:58:36 +01:00
},
},
2024-03-08 14:58:36 +01:00
},
},
2024-03-08 14:58:36 +01:00
},
})
2024-03-08 14:58:36 +01:00
export default theme