1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-12-01 21:42:08 +03:00
mdx-deck/docs/themes.md

167 lines
1.6 KiB
Markdown
Raw Normal View History

2018-08-05 17:11:30 +03:00
# Themes
![](images/default.png)
Default
```mdx
2019-03-10 03:31:30 +03:00
export { default as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/big.png)
Big
```mdx
2019-03-10 03:31:30 +03:00
export { big as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/book.png)
Book
```mdx
2019-03-10 03:31:30 +03:00
export { book as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/code.png)
Code
```mdx
2019-03-10 03:31:30 +03:00
export { code as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/comic.png)
Comic
```mdx
2019-03-10 03:31:30 +03:00
export { comic as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/condensed.png)
Condensed
```mdx
2019-03-10 03:31:30 +03:00
export { condensed as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/dark.png)
Dark
```mdx
2019-03-10 03:31:30 +03:00
export { dark as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/future.png)
Future
```mdx
2019-03-10 03:31:30 +03:00
export { future as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/hack.png)
Hack
```mdx
2019-03-10 03:31:30 +03:00
export { hack as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
<!--
![](images/lobster.png)
Lobster
-->
![](images/notes.png)
Notes
```mdx
2019-03-10 03:31:30 +03:00
export { notes as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
<!--
![](images/rye.png)
Rye
-->
![](images/script.png)
Script
```mdx
2019-03-10 03:31:30 +03:00
export { script as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/swiss.png)
Swiss
```mdx
2019-03-10 03:31:30 +03:00
export { swiss as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2018-08-05 17:13:59 +03:00
---
2018-08-05 17:11:30 +03:00
![](images/yellow.png)
Yellow
```mdx
2019-03-10 03:31:30 +03:00
export { yellow as theme } from 'mdx-deck/themes
'
```
---
Poppins
```mdx
export { poppins as theme } from 'mdx-deck/themes
'
```
---
Syntax Highlighter
```mdx
export { syntaxHighlighter as theme } from 'mdx-deck/themes
'
2018-08-05 17:11:30 +03:00
```
2019-03-10 03:31:30 +03:00
---
Syntax Highlighter Prism
```mdx
export { syntaxHighlighterPrism as theme } from 'mdx-deck/themes
'
```