-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanda.config.ts
39 lines (33 loc) · 936 Bytes
/
panda.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { defineConfig } from '@pandacss/dev';
import { globalVars } from './system/globalVars';
import { tokens } from './system/tokens';
import { textStyles } from './system/textStyles';
import { semanticTokens } from './system/semantic-tokens';
import { recipes, slotRecipes } from './system/recipes';
import { keyframes } from './system/keyframes';
import { conditions } from './system/conditions';
import { globalCss } from './system/globalCss';
import { patterns } from './system/patterns';
import { animationStyles } from './system/animationStyles';
export default defineConfig({
preflight: true,
include: ['./src/**/*.{ts,tsx}'],
exclude: [],
theme: {
extend: {
animationStyles,
textStyles,
tokens,
semanticTokens,
recipes,
slotRecipes,
keyframes,
},
},
conditions,
patterns,
globalCss,
globalVars,
jsxFramework: 'solid',
outdir: 'styled-system',
});