forked from opactorai/Claudable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
27 lines (26 loc) · 762 Bytes
/
tailwind.config.ts
File metadata and controls
27 lines (26 loc) · 762 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
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',
},
},
},
plugins: [],
}
export default config