-
Notifications
You must be signed in to change notification settings - Fork 1
/
panda.config.ts
82 lines (74 loc) ยท 2.03 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { defineConfig, defineGlobalStyles } from '@pandacss/dev';
import { textStyles } from './styles';
import { paletteColors, semanticColors } from './styles/colors';
import { shadowStyles } from './styles/shadows';
const globalCss = defineGlobalStyles({
'html, body': {
w: 'full',
h: 'full',
},
});
export default defineConfig({
// Whether to use css reset
globalCss,
preflight: true,
// Where to look for your css declarations
include: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./features/**/*.{js,jsx,ts,tsx}',
'./stories/**/*.{js,jsx,ts,tsx}',
],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
extend: {
textStyles,
tokens: {
sizes: {
maxWidth: {
value: '600px',
},
},
fontWeights: {
regular: { value: '400' },
},
colors: paletteColors,
shadows: shadowStyles,
},
semanticTokens: {
colors: semanticColors,
},
keyframes: {
dimFadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: '100%' },
},
spin: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
skeleton: {
'0%': { backgroundColor: '#70737C14' },
'50%': { backgroundColor: '#70737C08' },
'100%': { backgroundColor: '#70737C14' },
},
fadeUp: {
'0%': { opacity: 0, transform: 'translateY(10px)' },
'100%': { opacity: 100, transform: 'translateY(0px)' },
},
fadeDown: {
'0%': { opacity: 0, transform: 'translateY(-10px)' },
'100%': { opacity: 100, transform: 'translateY(0px)' },
},
cheerFadeIn: {
'0%': { opacity: 0, transform: 'translateX(-10px)' },
'100%': { opacity: '100%', transform: 'translateX(0px)' },
},
},
},
},
// The output directory for your css system
outdir: 'styled-system',
});