-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
42 lines (41 loc) · 1.29 KB
/
tailwind.config.ts
File metadata and controls
42 lines (41 loc) · 1.29 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
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: {
background: "#0a0a0f",
foreground: "#f8f9fa",
primary: "#0a66c2",
secondary: "#004182",
accent: "#0f4c81",
border: "#1f1f2e",
card: "#141420",
cardHover: "#1a1a28",
muted: "#64748b",
},
fontFamily: {
sans: ["var(--font-inter)", "system-ui", "sans-serif"],
mono: ["var(--font-jetbrains-mono)", "monospace"],
},
boxShadow: {
'glow': '0 0 20px rgba(10, 102, 194, 0.3)',
'glow-sm': '0 0 10px rgba(10, 102, 194, 0.2)',
'glow-lg': '0 0 40px rgba(10, 102, 194, 0.4)',
'glow-accent': '0 0 20px rgba(15, 76, 129, 0.3)',
'card': '0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-primary': 'linear-gradient(135deg, #0a66c2 0%, #004182 100%)',
'gradient-accent': 'linear-gradient(135deg, #0f4c81 0%, #0a66c2 100%)',
},
},
},
plugins: [],
};
export default config;