1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-29 13:58:02 +03:00
mdx-deck/packages/themes/book.js
2019-04-14 13:45:10 -04:00

28 lines
519 B
JavaScript

import base from './base'
const white = '#fffceb'
const black = '#11111f'
const blue = '#2d5dd7'
export default {
...base,
font: '"Crimson Text", serif',
googleFont: 'https://fonts.googleapis.com/css?family=Crimson+Text',
colors: {
text: black,
background: white,
link: blue,
},
css: {
textAlign: 'left',
fontSize: '1.5em',
'@media screen and (min-width:64em)': {
fontSize: '3em',
},
'& .Slide > div': {
minWidth: '80vw',
minHeight: '60vh',
},
},
}