1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-26 00:35:02 +03:00
mdx-deck/docs/themes.md

167 lines
1.7 KiB
Markdown
Raw Normal View History

2018-08-05 17:11:30 +03:00
# Themes
![](images/default.png)
Default
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
export { yellow as theme } from '@mdx-deck/themes'
2019-03-10 03:31:30 +03:00
```
---
Poppins
2019-04-22 00:51:55 +03:00
```js
export { poppins as theme } from '@mdx-deck/themes'
2019-03-10 03:31:30 +03:00
```
---
Syntax Highlighter
2019-04-22 00:51:55 +03:00
```js
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
2019-04-22 00:51:55 +03:00
```js
export { syntaxHighlighterPrism as theme } from '@mdx-deck/themes'
2019-04-22 00:44:52 +03:00
```
---
2019-04-22 00:44:52 +03:00
Aspect 16:9
2019-04-22 00:51:55 +03:00
```js
export { aspect as theme } from '@mdx-deck/themes'
2019-04-22 00:44:52 +03:00
```
---
2019-04-22 00:44:52 +03:00
Aspect 4:3
2019-04-22 00:51:55 +03:00
```js
export { aspect43 as theme } from '@mdx-deck/themes'
2019-03-10 03:31:30 +03:00
```