-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
73 lines (71 loc) · 1.53 KB
/
tailwind.config.ts
File metadata and controls
73 lines (71 loc) · 1.53 KB
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
import type { Config } from "tailwindcss";
import tailwindcssAnimate from "tailwindcss-animate";
export default {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
fontFamily: {
sans: [
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"sans-serif",
],
display: [
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"serif"
]
},
colors: {
fw: {
bg: "#1A1A1A",
panel: "#2A2A2A",
accent: "#E91E63",
accent2: "#FF9800",
accent3: "#2196F3",
accent4: "#4CAF50",
petrol: "#00ACC1",
text: "#FFFFFF",
subtext: "#B0B0B0",
border: "#404040"
},
accent: {
DEFAULT: "#E91E63",
alt: "#FF9800"
}
},
borderRadius: {
lg: "12px",
md: "10px",
sm: "6px",
},
boxShadow: {
card: "0 4px 24px 0 rgba(0, 0, 0, 0.3)",
button: "0 2px 8px 0 rgba(233, 30, 99, 0.3)"
},
animation: {
"pulse-brand": "pulse-brand 2s infinite"
}
}
},
plugins: [tailwindcssAnimate],
} satisfies Config;