-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
70 lines (68 loc) · 1.74 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#000000",
foreground: "#ffffff",
card: {
DEFAULT: "#111111",
foreground: "#ffffff"
},
popover: {
DEFAULT: "#111111",
foreground: "#ffffff"
},
primary: {
DEFAULT: "#6366f1",
foreground: "#ffffff"
},
secondary: {
DEFAULT: "#1f2937",
foreground: "#9ca3af"
},
muted: {
DEFAULT: "#1f2937",
foreground: "#9ca3af"
},
accent: {
DEFAULT: "#18181b",
foreground: "#ffffff"
},
destructive: {
DEFAULT: "#991b1b",
foreground: "#ffffff"
},
border: "#2d2d2d",
input: "#2d2d2d",
ring: "#6366f1",
},
boxShadow: {
glow: "0 0 20px rgba(139, 92, 246, 0.15)",
"glow-lg": "0 0 30px rgba(139, 92, 246, 0.2)",
},
backgroundImage: {
"gradient-primary": "linear-gradient(to right, #6366f1, #8b5cf6)",
"gradient-secondary": "linear-gradient(to right, #3b82f6, #6366f1)",
"gradient-border": "linear-gradient(to bottom, #6366f1, #3b82f6)",
},
borderRadius: {
lg: "0.75rem",
md: "0.5rem",
sm: "0.25rem"
},
fontFamily: {
sans: ['Manrope', 'system-ui', 'sans-serif'],
heading: ['Raleway', 'system-ui', 'sans-serif'],
}
}
},
plugins: [require("tailwindcss-animate")],
};
export default config;