-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssforge.config.ts
More file actions
46 lines (45 loc) · 805 Bytes
/
cssforge.config.ts
File metadata and controls
46 lines (45 loc) · 805 Bytes
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
import { defineConfig } from "/cssforge";
export default defineConfig({
colors: {
palette: {
value: {
brand: {
value: {
primary: "#1d4ed8",
accent: "#f97316",
surface: "#0f172a",
},
},
},
},
},
spacing: {
custom: {
size: {
value: {
1: "4px",
2: "8px",
3: "12px",
4: "16px",
},
},
},
},
typography: {
fluid: {
base: {
value: {
minWidth: 320,
minFontSize: 16,
minTypeScale: 1.2,
maxWidth: 1280,
maxFontSize: 18,
maxTypeScale: 1.25,
negativeSteps: 1,
positiveSteps: 2,
prefix: "text",
},
},
},
},
});