This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panda.config.ts
145 lines (138 loc) · 2.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import { defineConfig } from "@pandacss/dev"
import { buttonRecipe } from "~/recipes"
import { textStyles } from "~/theme"
export default defineConfig({
// Whether to use css reset
preflight: true,
globalCss: {
html: {
height: "100%",
},
body: {
"--fonts-roboto": "Roboto, sans-serif",
"--fonts-spectral": "Spectral, serif",
"font-family": "var(--fonts-roboto)",
"line-height": "1.5",
height: "100%",
minHeight: "100%",
display: "flex",
flexDirection: "column",
},
},
// The extension for the emitted JavaScript files
outExtension: "js",
// Where to look for your css declarations
include: [
"./app/routes/**/*.{ts,tsx,js,jsx}",
"./app/features/**/*.{ts,tsx,js,jsx}",
],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
extend: {
recipes: {
button: buttonRecipe,
},
keyframes: {
slideUp: {
"0%": {
opacity: 0,
transform: "translateY(100%)",
},
"100%": {
opacity: 1,
transform: "translateY(0)",
},
},
slideIn: {
"0%": {
opacity: 0,
transform: "translateX(100%)",
},
"100%": {
opacity: 1,
transform: "translateX(0)",
},
},
slideOut: {
"0%": {
opacity: 1,
transform: "translateX(0)",
},
"100%": {
opacity: 0,
transform: "translateX(100%)",
},
},
progressBar: {
"0%": {
width: "100%",
},
"100%": {
width: "0%",
},
},
},
textStyles,
tokens: {
colors: {
primary: {
value: "#FF559D",
},
secondary: {
value: "#6255ff",
},
tertiary: {
value: "#55FFB7",
},
gray: {
value: "#DDDDDD",
},
grayText: {
value: "#717171",
},
white: {
value: "#FFFFFF",
},
black: {
value: "#222222",
},
},
fonts: {
roboto: {
value: "var(--fonts-roboto)",
},
spectral: {
value: "var(--fonts-spectral)",
},
},
},
},
},
patterns: {
extend: {
numLines: {
description:
"Simplifies the declaration of the number of lines of text",
properties: {
// The direction of the scroll
lines: { type: "number" },
},
transform(props) {
const { lines, ...rest } = props
return {
overflow: "hidden",
display: "-webkit-box",
"-webkit-box-orient": "vertical",
"-webkit-line-clamp": lines,
...rest,
}
},
},
},
},
// The output directory for your css system
outdir: "app/styled-system",
jsxFramework: "react",
})