1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-09-17 18:07:43 +03:00
mdx-deck/packages/themes/condensed.js

35 lines
593 B
JavaScript
Raw Permalink Normal View History

2018-07-29 20:18:00 +03:00
const blue = '#0af'
export default {
2019-02-18 00:01:11 +03:00
googleFont: 'https://fonts.googleapis.com/css?family=Roboto+Condensed',
2019-07-16 23:01:42 +03:00
fonts: {
body: '"Roboto Condensed", system-ui, sans-serif',
monospace: '"Roboto Mono", monospace',
},
2018-07-29 20:18:00 +03:00
colors: {
text: '#fff',
background: '#000',
2019-07-16 23:01:42 +03:00
primary: blue,
2018-07-29 20:18:00 +03:00
pre: blue,
2019-07-16 23:01:42 +03:00
darkgray: '#111',
},
fontWeights: {
heading: 600,
bold: 600,
2018-07-29 20:18:00 +03:00
},
2019-07-16 23:01:42 +03:00
text: {
heading: {
textTransform: 'uppercase',
},
2018-07-29 20:18:00 +03:00
},
2019-07-16 23:01:42 +03:00
styles: {
pre: {
color: 'primary',
bg: 'darkgray',
},
code: {
color: 'primary',
},
2019-02-18 00:01:11 +03:00
},
2018-07-29 20:18:00 +03:00
}