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

39 lines
639 B
JavaScript

export default {
font: 'system-ui, sans-serif',
monospace: 'Menlo, monospace',
colors: {
text: '#000',
background: 'white',
link: '#07c',
pre: '#f0f',
preBackground: '#333',
code: '#f0f',
},
css: {
fontSize: '16px',
textAlign: 'center',
'@media screen and (min-width:56em)': {
fontSize: '32px',
},
'@media screen and (min-width:64em)': {
fontSize: '48px',
},
'@media print': {
fontSize: '40px',
},
'li > p': {
margin: 0,
},
},
pre: {
textAlign: 'left',
},
ol: {
textAlign: 'left',
},
ul: {
textAlign: 'left',
},
}