-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (48 loc) · 1.1 KB
/
tailwind.config.ts
File metadata and controls
51 lines (48 loc) · 1.1 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
import type { Config } from "tailwindcss";
const config = {
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: {
keyframes: {
blink: {
"0%, 49%": { opacity: "1" },
"50%, 100%": { opacity: "0" },
},
},
animation: {
blink: "blink 1s infinite",
},
colors: {
white: "#f1f1f1",
blue: "#79C7FD",
dull: "#C1C1C1",
orange: "#FF804E",
"accent-dark": "#1a1a1a",
"accent-orange": "#FA4616",
"accent-blue": "#0021A5",
"light-orange": "#FA4616",
"light-blue": "#8BC5F7",
},
boxShadow: {
"white-glow": "0 0 15px rgba(255,255,255,0.15)",
"white-glow-hover": "0 0 30px rgba(255,255,255,0.3)",
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;
export default config;