1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-29 13:58:02 +03:00
mdx-deck/docs/themes.md
2019-03-09 19:31:30 -05:00

167 lines
1.6 KiB
Markdown

# Themes
![](images/default.png)
Default
```mdx
export { default as theme } from 'mdx-deck/themes
'
```
---
![](images/big.png)
Big
```mdx
export { big as theme } from 'mdx-deck/themes
'
```
---
![](images/book.png)
Book
```mdx
export { book as theme } from 'mdx-deck/themes
'
```
---
![](images/code.png)
Code
```mdx
export { code as theme } from 'mdx-deck/themes
'
```
---
![](images/comic.png)
Comic
```mdx
export { comic as theme } from 'mdx-deck/themes
'
```
---
![](images/condensed.png)
Condensed
```mdx
export { condensed as theme } from 'mdx-deck/themes
'
```
---
![](images/dark.png)
Dark
```mdx
export { dark as theme } from 'mdx-deck/themes
'
```
---
![](images/future.png)
Future
```mdx
export { future as theme } from 'mdx-deck/themes
'
```
---
![](images/hack.png)
Hack
```mdx
export { hack as theme } from 'mdx-deck/themes
'
```
---
<!--
![](images/lobster.png)
Lobster
-->
![](images/notes.png)
Notes
```mdx
export { notes as theme } from 'mdx-deck/themes
'
```
---
<!--
![](images/rye.png)
Rye
-->
![](images/script.png)
Script
```mdx
export { script as theme } from 'mdx-deck/themes
'
```
---
![](images/swiss.png)
Swiss
```mdx
export { swiss as theme } from 'mdx-deck/themes
'
```
---
![](images/yellow.png)
Yellow
```mdx
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
'
```
---
Syntax Highlighter Prism
```mdx
export { syntaxHighlighterPrism as theme } from 'mdx-deck/themes
'
```