-
Notifications
You must be signed in to change notification settings - Fork 0
/
panda.config.ts
53 lines (48 loc) · 1.26 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
import { defineConfig } from "@pandacss/dev";
export default defineConfig({
// Whether to use css reset
preflight: true,
// Where to look for your css declarations
include: ["./src/**/*.{js,jsx,ts,tsx}", "./pages/**/*.{js,jsx,ts,tsx}"],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
tokens: {
colors: {
white: { value: "#FFFFFF" },
back: { value: "#FBF8EF" },
black: { value: "#1B1B1B" },
gray: { 50: { value: "#929292" } },
primary: {
10: { value: "#F5EFDF" },
20: { value: "#F4ECD4" },
45: { value: "#E8E3D2" },
60: { value: "#EEE2BE" },
80: { value: "#EADCB1" },
100: { value: "#F8D97E" },
200: { value: "#FFE597" },
},
secondary: {
50: { value: "#B3D6D4" },
100: { value: "#83C7C3" },
},
red: { 100: { value: "#F63333" } },
green: { 100: { value: "#37C35E" } },
},
},
keyframes: {
run: {
"0%": {
transform: "translateX(0%)",
},
"100%": {
transform: "translateX(100%)",
},
},
},
extend: {},
},
// The output directory for your css system
outdir: "styled-system",
});