-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
surface: 'var(--surface)',
'surface-elevated': 'var(--surface-elevated)',
'surface-overlay': 'var(--surface-overlay)',
foreground: 'var(--foreground)',
'foreground-muted': 'var(--foreground-muted)',
'foreground-subtle': 'var(--foreground-subtle)',
accent: 'var(--accent)',
'accent-vivid': 'var(--accent-vivid)',
'accent-muted': 'var(--accent-muted)',
secondary: 'var(--secondary)',
'secondary-vivid': 'var(--secondary-vivid)',
border: 'var(--border)',
'border-strong': 'var(--border-strong)',
success: 'var(--success)',
warning: 'var(--warning)',
error: 'var(--error)',
info: 'var(--info)',
},
fontFamily: {
sans: ['Sora', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
serif: ['Crimson Pro', 'Georgia', 'Times New Roman', 'serif'],
},
},
},
plugins: [],
}