-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
145 lines (132 loc) · 3.67 KB
/
tailwind.config.cjs
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
const defaultTheme = require("tailwindcss/defaultTheme");
const flex = defaultTheme.flex;
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{ts,tsx}", "./index.html"],
darkMode: "class",
theme: {
extend: {
animation: {
"spin-slow": "spin 3s linear infinite",
},
borderWidth: {
DEFAULT: "1px",
0: "0",
2: "2px",
3: "3px",
4: "4px",
6: "6px",
8: "8px",
},
fontSize: {
sm: ["12px", "20px"],
base: ["14px", "20px"],
md: ["16px", "24px"],
lg: ["18px", "24px"],
xl: ["24px", "32px"],
},
fontFamily: {
sans: [...defaultTheme.fontFamily.sans],
serif: [...defaultTheme.fontFamily.serif],
mono: [...defaultTheme.fontFamily.mono],
},
transitionProperty: {
"bg-border": "background-color, border-color",
},
flex: {
...flex,
"cell-sm": "0 0 220px",
"cell-md": "0 0 300px",
"cell-lg": "0 0 480px",
},
colors: {
gold: "#E09600",
brown: "#825804",
plum: "#98256A",
forest: "#00633F",
"off-white": "#FDF8F0",
white: "#FFFFFF",
black: "#111920",
"black-700": "#111920",
"black-600": "#343B41",
"black-500": "#595E63",
"black-400": "#707579",
"black-300": "#888C90",
"black-200": "#B8BABD",
"black-100": "#E7E8E8",
"black-50": "#FAFAFA",
yellow: "#FFB607",
"yellow-400": "#FDDB1C",
"yellow-500": "#FFB607",
"orange-700": "#5A3C00",
"orange-600": "#865A00",
"orange-500": "#B37800",
"orange-400": "#E09600",
"orange-300": "#E9B64D",
"orange-200": "#F3D599",
"orange-100": "#FCF4E5",
lavender: "#BA9FF4",
"lavender-700": "#BA9FF4",
"lavender-600": "#705F92",
"lavender-500": "#957FC3",
"lavender-400": "#BA9FF4",
"lavender-300": "#CFBCF7",
"lavender-200": "#E3D9FB",
"lavender-100": "#F8F5FE",
"maroon-700": "#3D0F2A",
"maroon-600": "#5B1640",
"maroon-500": "#7A1E55",
"maroon-400": "#98256A",
"maroon-300": "#B76797",
"maroon-200": "#D6A8C3",
"maroon-100": "#F5E9F0",
red: "#AD1A1A",
"red-700": "#530B0B",
"red-600": "#741414",
"red-500": "#901717",
"red-400": "#AD1A1A",
"red-300": "#C76464",
"red-200": "#E3A3A3",
"red-100": "#FDE3E3",
lime: "#A4E352",
"lime-700": "#425B21",
"lime-600": "#628831",
"lime-500": "#83B642",
"lime-400": "#A4E352",
"lime-300": "#BFEB86",
"lime-200": "#DBF4BA",
"lime-100": "#EDF9DC",
"green-700": "#002819",
"green-600": "#003B26",
"green-500": "#004F32",
"green-400": "#00633F",
"green-300": "#4D9279",
"green-200": "#99C1B2",
"green-100": "#E5EFEB",
cyan: "#68EFD6",
"cyan-700": "#2A6056",
"cyan-600": "#3E8F80",
"cyan-500": "#53BFAB",
"cyan-400": "#68EFD6",
"cyan-300": "#96F4E2",
"cyan-200": "#C3F9EF",
"cyan-100": "#E8FDF9",
indigo: "#4361FF",
"indigo-700": "#1B2766",
"indigo-600": "#283A99",
"indigo-500": "#364ECC",
"indigo-400": "#4361FF",
"indigo-300": "#7C91FF",
"indigo-200": "#B4C0FF",
"indigo-100": "#ECEFFF",
},
},
},
variants: {
extend: {
padding: ["first", "last"],
},
opacity: ({ after }) => after(["disabled"]),
},
plugins: [require("@tailwindcss/forms")],
};