mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
25 lines
409 B
JavaScript
25 lines
409 B
JavaScript
import theme from './base'
|
|
|
|
const blue = '#0af'
|
|
|
|
export default {
|
|
...theme,
|
|
font: '"Bowlby One SC", sans-serif',
|
|
googleFont: 'https://fonts.googleapis.com/css?family=Bowlby+One+SC',
|
|
colors: {
|
|
text: '#dff',
|
|
background: '#011',
|
|
blue,
|
|
link: blue,
|
|
pre: blue,
|
|
preBackground: '#000',
|
|
code: blue,
|
|
},
|
|
heading: {
|
|
fontWeight: 600,
|
|
},
|
|
quote: {
|
|
fontWeight: 600,
|
|
},
|
|
}
|