-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
28 lines (27 loc) · 821 Bytes
/
tailwind.config.ts
File metadata and controls
28 lines (27 loc) · 821 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
import type { Config } from 'tailwindcss'
import typography from '@tailwindcss/typography'
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',
},
},
},
plugins: [typography],
}
export default config