-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
73 lines (73 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module.exports = {
content: [
'./index.html',
'./src/**/*.{ts,tsx,js,jsx}',
'./*.{ts,tsx,js,jsx}'
],
darkMode: 'class',
theme: {
extend: {
colors: {
// AXIOM-ONE paper theme (design lock)
paper: '#F9F8F4',
ink: '#111111',
surface: '#FFFFFF',
'teal-success': '#0F766E',
'error-red': '#B91C1C',
'trace-blue': '#4F46E5',
'border-std': '#E5E5E5',
muted: '#888888',
// Legacy Variables (Keep for archived pages)
'bg-surface': 'var(--bg-surface)',
'border-primary': 'var(--border-primary)',
'text-primary': 'var(--text-primary)',
'text-secondary': 'var(--text-secondary)',
'accent-primary': 'var(--accent-primary)',
'accent-secondary': 'var(--accent-secondary)',
primary: "#3B82F6",
accent: "#60A5FA",
dark: {
DEFAULT: "#0A0A0B",
card: "#121214",
border: "#1F2023",
muted: "#262626"
}
},
fontFamily: {
serif: ['Newsreader', 'serif'],
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
display: ["Inter", "sans-serif"],
signature: ['Dancing Script', 'cursive']
},
boxShadow: {
hard: '4px 4px 0px rgba(0,0,0,0.1)',
'glow-blue': '0 0 40px rgba(59, 130, 246, 0.15)',
},
borderRadius: {
'xs': '0.125rem',
'sm': '0.25rem',
DEFAULT: '0.375rem',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'scroll': 'scroll 40s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(20px)' },
},
scroll: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
}
},
plugins: []
};