-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (40 loc) · 932 Bytes
/
tailwind.config.ts
File metadata and controls
41 lines (40 loc) · 932 Bytes
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
import type { Config } from 'tailwindcss'
export default {
darkMode: 'class',
content: [
'./app/**/*.{vue,js,ts}',
'./components/**/*.{vue,js,ts}',
'./pages/**/*.{vue,js,ts}',
'./layouts/**/*.{vue,js,ts}',
],
theme: {
extend: {
colors: {
brand: {
pink: '#ff006e',
orange: '#fb5607',
violet: '#8338ec',
cyan: '#06ffa5',
yellow: '#ffbe0b',
},
surface: {
base: '#0a0a0f',
card: '#111118',
elevated: '#1a1a24',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
borderRadius: {
'4xl': '2rem',
},
animation: {
'oil-slick': 'oilSlick 8s ease infinite',
'pulse-glow': 'pulse-glow 2s ease-in-out infinite',
shimmer: 'shimmer 3s linear infinite',
},
},
},
plugins: [],
} satisfies Config