forked from leather-io/extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpanda.config.ts
43 lines (33 loc) · 961 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
40
41
42
43
import { defineConfig } from '@pandacss/dev';
import { breakpoints } from './theme/breakpoints';
import { globalCss } from './theme/global/global';
import { keyframes } from './theme/keyframes';
import { buttonRecipe } from './theme/recipes/button-recipe';
import { linkRecipe } from './theme/recipes/link-recipe';
import { semanticTokens } from './theme/semantic-tokens';
import { tokens } from './theme/tokens';
import { textStyles } from './theme/typography';
export default defineConfig({
preflight: true,
include: ['./src/**/*.{js,jsx,ts,tsx}'],
exclude: [],
prefix: 'leather',
presets: [],
studio: { logo: '💼' },
jsxFramework: 'react',
strictTokens: false,
theme: {
extend: {
semanticTokens,
tokens,
keyframes,
textStyles,
breakpoints,
recipes: { button: buttonRecipe, link: linkRecipe },
},
},
outdir: 'leather-styles',
outExtension: 'js',
minify: true,
globalCss,
});