mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
14 lines
291 B
JavaScript
14 lines
291 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']
|
|
|
|
export default theme
|