-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 845 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
35 lines (34 loc) · 845 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
background: '#000000',
foreground: '#f3f4f6',
card: '#080a0f',
'card-soft': '#0d1118',
border: '#202633',
muted: '#98a0ad',
primary: '#d9dee8',
'primary-hover': '#f3f4f6',
accent: '#c7ceda',
danger: '#b8c0cd',
warning: '#aeb7c5',
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'sans-serif'],
serif: ['Georgia', 'serif'],
},
boxShadow: {
soft: '0 16px 40px rgba(1, 4, 9, 0.45)',
},
},
},
darkMode: 'class',
plugins: [],
}
export default config