mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
19 lines
341 B
JavaScript
19 lines
341 B
JavaScript
import base from './base'
|
|
|
|
const white = '#ffeec1'
|
|
|
|
export default {
|
|
...base,
|
|
font: '"Rye", serif',
|
|
monospace: '"Roboto Mono", monospace',
|
|
googleFont: 'https://fonts.googleapis.com/css?family=Rye|Roboto+Mono',
|
|
colors: {
|
|
text: white,
|
|
background: 'black',
|
|
link: white,
|
|
},
|
|
h1: {
|
|
textTransform: 'uppercase',
|
|
},
|
|
}
|