-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (33 loc) · 894 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (33 loc) · 894 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#080808",
accent: {
violet: "#8B5CF6",
pink: "#EC4899",
},
},
fontFamily: {
sans: ["var(--font-inter)", "Inter", "system-ui", "sans-serif"],
mono: ["ui-monospace", "monospace"],
},
backgroundImage: {
"gradient-accent": "linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%)",
},
boxShadow: {
glow: "0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(236, 72, 153, 0.2)",
"glow-sm": "0 0 15px rgba(139, 92, 246, 0.25)",
},
},
},
plugins: [],
};
export default config;