1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-09-11 06:35:24 +03:00
mdx-deck/packages/themes/condensed.js
2019-07-16 16:01:42 -04:00

35 lines
593 B
JavaScript

const blue = '#0af'
export default {
googleFont: 'https://fonts.googleapis.com/css?family=Roboto+Condensed',
fonts: {
body: '"Roboto Condensed", system-ui, sans-serif',
monospace: '"Roboto Mono", monospace',
},
colors: {
text: '#fff',
background: '#000',
primary: blue,
pre: blue,
darkgray: '#111',
},
fontWeights: {
heading: 600,
bold: 600,
},
text: {
heading: {
textTransform: 'uppercase',
},
},
styles: {
pre: {
color: 'primary',
bg: 'darkgray',
},
code: {
color: 'primary',
},
},
}