-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (46 loc) · 1.29 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
cyber: {
bg: {
primary: '#0f172a', // slate-900
secondary: '#1e293b', // slate-800
tertiary: '#334155', // slate-700
},
text: {
primary: '#e2e8f0', // slate-200
secondary: '#cbd5e1', // slate-300
tertiary: '#94a3b8', // slate-400
muted: '#64748b', // slate-500
},
border: {
DEFAULT: '#475569', // slate-600
light: '#334155', // slate-700
},
accent: {
cyan: {
light: '#22d3ee', // cyan-400
DEFAULT: '#06b6d4', // cyan-500
dark: '#0891b2', // cyan-600
},
indigo: {
light: '#818cf8', // indigo-400
DEFAULT: '#6366f1', // indigo-500
dark: '#4f46e5', // indigo-600
}
},
}
},
backgroundImage: {
'cyber-gradient': 'linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to))',
},
},
},
plugins: [],
};
export default config;