-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
54 lines (53 loc) · 1.28 KB
/
tailwind.config.ts
File metadata and controls
54 lines (53 loc) · 1.28 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
bg: {
DEFAULT: "#080c14",
card: "#0d1424",
"card-hover": "#111d33",
surface: "#1a2235",
},
border: {
DEFAULT: "rgba(255, 255, 255, 0.06)",
light: "rgba(255, 255, 255, 0.12)",
},
text: {
DEFAULT: "#f0f2f8",
secondary: "#b0bcd4",
dim: "#7888a8",
},
accent: {
DEFAULT: "#f97066",
glow: "rgba(249, 112, 102, 0.4)",
soft: "rgba(249, 112, 102, 0.08)",
},
lagoon: {
DEFAULT: "#14b8a6",
glow: "rgba(20, 184, 166, 0.3)",
soft: "rgba(20, 184, 166, 0.08)",
},
gold: {
DEFAULT: "#f5c542",
soft: "rgba(245, 197, 66, 0.08)",
},
},
fontFamily: {
display: ["var(--font-display)", "sans-serif"],
body: ["var(--font-jakarta)", "sans-serif"],
},
borderRadius: {
"2xl": "16px",
"3xl": "24px",
},
},
},
plugins: [],
};
export default config;