-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (43 loc) · 1.15 KB
/
Copy pathtailwind.config.ts
File metadata and controls
45 lines (43 loc) · 1.15 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
brand: {
50: '#f2f7ff',
100: '#e6efff',
200: '#cce0ff',
300: '#99c2ff',
400: '#66a3ff',
500: '#3385ff',
600: '#1a73e8',
700: '#1557b0',
800: '#0f3b78',
900: '#0a2550',
},
'bolt-bg-primary': '#0c0a14',
'bolt-bg-secondary': '#15111e',
'bolt-bg-tertiary': '#1e1a2a',
'bolt-border-color': 'rgba(139, 92, 246, 0.2)',
'bolt-text-primary': '#e5e2ff',
'bolt-text-secondary': '#a8a4ce',
'bolt-text-tertiary': '#6b6685',
},
animation: {
blob: 'blob 7s infinite',
pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config