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
|
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'monospace']
},
colors: {
surface: {
50: '#f8fafc',
100: '#0f1117',
200: '#1a1d27',
300: '#242837',
400: '#2e3347',
},
neon: {
green: '#22f06a',
red: '#ff4060',
amber: '#ffb020',
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
}
},
plugins: []
};
|