UNPKG

534 BTypeScriptView Raw
1import { Theme } from '@theme-ui/css'
2
3import {
4 base,
5 bootstrap,
6 bulma,
7 dark,
8 deep,
9 funk,
10 future,
11 polaris,
12 roboto,
13 sketchy,
14 swiss,
15 system,
16 tailwind,
17 tosh,
18} from '../dist/theme-ui-presets.cjs'
19
20describe('presets', () => {
21 it('can be passed to ThemeProvider', () => {
22 const _presets: Theme[] = [
23 base,
24 bootstrap,
25 bulma,
26 dark,
27 deep,
28 funk,
29 future,
30 polaris,
31 roboto,
32 sketchy,
33 swiss,
34 system,
35 tailwind,
36 tosh,
37 ]
38 })
39})