mirror of
https://github.com/System-End/site.git
synced 2026-04-19 19:45:07 +00:00
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
import base from '@hackclub/theme'
|
|
import { merge } from 'lodash'
|
|
|
|
const theme = base
|
|
|
|
theme.useColorSchemeMediaQuery = false
|
|
|
|
theme.buttons.primary = merge(theme.buttons.primary, {
|
|
textTransform: 'uppercase'
|
|
})
|
|
|
|
theme.layout.copy.maxWidth = [null, null, 'copyPlus']
|
|
|
|
theme.text.title.fontSize = [5, 6]
|
|
|
|
export default theme
|