-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
144 lines (144 loc) · 3.99 KB
/
Copy pathtailwind.config.js
File metadata and controls
144 lines (144 loc) · 3.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
// Cyberpunk Dark Theme Colors
primary: {
bg: 'var(--color-bg-primary)',
surface: 'var(--color-bg-surface)',
elevated: 'var(--color-bg-elevated)',
sidebar: 'var(--color-bg-sidebar)',
card: 'var(--color-bg-card)',
},
neon: {
blue: 'var(--color-neon-blue)',
pink: 'var(--color-neon-pink)',
green: 'var(--color-neon-green)',
yellow: 'var(--color-neon-yellow)',
red: 'var(--color-neon-red)',
purple: 'var(--color-neon-purple)',
},
text: {
primary: 'var(--color-text-primary)',
secondary: 'var(--color-text-secondary)',
disabled: 'var(--color-text-disabled)',
},
syntax: {
key: '#00d4ff',
string: '#00ff9f',
number: '#ffb800',
boolean: '#ff006e',
null: '#ff3366',
bracket: '#8892b0',
comment: '#4a5578',
},
border: {
default: 'var(--color-border-default)',
hover: 'var(--color-border-hover)',
focus: 'var(--color-border-focus)',
},
// Light Theme Colors
light: {
bg: '#f5f7ff',
surface: '#ffffff',
elevated: '#e8ecff',
sidebar: '#eef1ff',
primary: '#0066ff',
secondary: '#ff0055',
success: '#00c896',
warning: '#ff8800',
error: '#dd0000',
text: {
primary: '#1a1f3a',
secondary: '#5a6580',
disabled: '#9ea8c0',
},
},
},
fontFamily: {
mono: [
'Fira Code',
'JetBrains Mono',
'Cascadia Code',
'Monaco',
'Consolas',
'Courier New',
'monospace',
],
sans: ['Inter', '-apple-system', 'Segoe UI', 'Helvetica Neue', 'sans-serif'],
},
fontSize: {
display: {
lg: '2rem', // 32px
md: '1.5rem', // 24px
},
heading: {
1: '1.25rem', // 20px
2: '1.125rem', // 18px
},
body: {
lg: '1rem', // 16px
base: '0.875rem', // 14px
sm: '0.75rem', // 12px
},
caption: '0.6875rem', // 11px
},
spacing: {
xxs: '0.25rem', // 4px
xs: '0.5rem', // 8px
sm: '0.75rem', // 12px
md: '1rem', // 16px
lg: '1.5rem', // 24px
xl: '2rem', // 32px
'2xl': '3rem', // 48px
'3xl': '4rem', // 64px
},
borderRadius: {
sm: '4px',
md: '8px',
lg: '12px',
xl: '16px',
pill: '999px',
},
boxShadow: {
xs: '0 1px 2px rgba(0, 0, 0, 0.3)',
sm: '0 2px 8px rgba(0, 0, 0, 0.4)',
md: '0 4px 16px rgba(0, 0, 0, 0.5)',
lg: '0 8px 24px rgba(0, 0, 0, 0.6)',
'glow-blue':
'0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.1)',
'glow-pink':
'0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3)',
'glow-green':
'0 0 10px rgba(0, 255, 159, 0.5), 0 0 20px rgba(0, 255, 159, 0.3)',
},
animation: {
'neon-pulse': 'neon-pulse 2s ease-in-out infinite',
},
keyframes: {
'neon-pulse': {
'0%, 100%': {
boxShadow:
'0 0 5px var(--neon-color), 0 0 10px var(--neon-color)',
opacity: '1',
},
'50%': {
boxShadow:
'0 0 10px var(--neon-color), 0 0 20px var(--neon-color), 0 0 30px var(--neon-color)',
opacity: '0.8',
},
},
},
transitionDuration: {
fast: '150ms',
normal: '300ms',
slow: '500ms',
'very-slow': '800ms',
},
},
},
plugins: [],
};