-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
136 lines (135 loc) · 3.58 KB
/
tailwind.config.js
File metadata and controls
136 lines (135 loc) · 3.58 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
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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
// StrayDog Brand Colors
primary: {
50: "#f0f9ff",
100: "#e0f2fe",
200: "#bae6fd",
300: "#7dd3fc",
400: "#38bdf8",
500: "#0ea5e9",
600: "#0284c7",
700: "#0369a1",
800: "#075985",
900: "#0c4a6e",
950: "#082f49",
},
secondary: {
50: "#fdf4ff",
100: "#fae8ff",
200: "#f5d0fe",
300: "#f0abfc",
400: "#e879f9",
500: "#d946ef",
600: "#c026d3",
700: "#a21caf",
800: "#86198f",
900: "#701a75",
950: "#4a044e",
},
accent: {
50: "#fff7ed",
100: "#ffedd5",
200: "#fed7aa",
300: "#fdba74",
400: "#fb923c",
500: "#f97316",
600: "#ea580c",
700: "#c2410c",
800: "#9a3412",
900: "#7c2d12",
950: "#431407",
},
neutral: {
50: "#f8fafc",
100: "#f1f5f9",
200: "#e2e8f0",
300: "#cbd5e1",
400: "#94a3b8",
500: "#64748b",
600: "#475569",
700: "#334155",
800: "#1e293b",
900: "#0f172a",
950: "#020617",
},
glass: {
light: "rgba(255, 255, 255, 0.1)",
medium: "rgba(255, 255, 255, 0.2)",
dark: "rgba(0, 0, 0, 0.1)",
},
border: "hsl(var(--border))",
},
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
display: ["Space Grotesk", "system-ui", "sans-serif"],
},
backdropBlur: {
xs: "2px",
sm: "4px",
md: "8px",
lg: "12px",
xl: "16px",
"2xl": "24px",
"3xl": "40px",
},
boxShadow: {
glass: "0 8px 32px 0 rgba(31, 38, 135, 0.37)",
"glass-inset": "inset 0 1px 0 0 rgba(255, 255, 255, 0.05)",
glow: "0 0 20px rgba(14, 165, 233, 0.5)",
"glow-purple": "0 0 20px rgba(217, 70, 239, 0.5)",
"glow-orange": "0 0 20px rgba(249, 115, 22, 0.5)",
},
animation: {
float: "float 6s ease-in-out infinite",
"pulse-glow": "pulse-glow 2s ease-in-out infinite alternate",
"slide-in": "slide-in 0.3s ease-out",
"fade-in": "fade-in 0.2s ease-out",
"bounce-subtle": "bounce-subtle 2s infinite",
},
keyframes: {
float: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-10px)" },
},
"pulse-glow": {
"0%": { boxShadow: "0 0 5px rgba(14, 165, 233, 0.5)" },
"100%": { boxShadow: "0 0 20px rgba(14, 165, 233, 0.8)" },
},
"slide-in": {
"0%": { transform: "translateX(-100%)", opacity: "0" },
"100%": { transform: "translateX(0)", opacity: "1" },
},
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
"bounce-subtle": {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-5px)" },
},
},
borderRadius: {
"4xl": "2rem",
},
spacing: {
18: "4.5rem",
88: "22rem",
},
},
},
plugins: [],
};