site/lib/theme.js
2020-07-24 21:57:30 -04:00

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