-
Notifications
You must be signed in to change notification settings - Fork 1
/
panda.config.ts
56 lines (53 loc) · 1018 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
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* BEGIN
*/
import { defineConfig } from "@pandacss/dev";
export default defineConfig({
preflight: true,
include: ["./src/**/*.{js,jsx,ts,tsx}"],
exclude: [],
jsxFramework: "react",
outdir: "styled-system",
globalCss: {},
theme: {
extend: {
keyframes: {
scaleUp: {
"0%": { transform: "scale(1)" },
"100%": { transform: "scale(1.5)" },
},
},
},
},
staticCss: {
css: [
{
properties: {
bgColor: [
"gray.200",
"red.200",
"orange.200",
"amber.200",
"yellow.200",
"yellow.200",
"green.200",
"emerald.200",
"teal.200",
"cyan.200",
"sky.200",
"blue.200",
"indigo.200",
"violet.200",
"purple.200",
"fuchsia.200",
"pink.200",
"rose.200",
],
},
},
],
},
});
/**
* END
*/