-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1.48 KB
/
Copy pathtailwind.config.js
File metadata and controls
36 lines (36 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-family)', 'sans-serif'],
},
colors: {
accent: 'hsl(var(--accent) / <alpha-value>)',
'accent-soft': 'hsl(var(--accent-soft) / <alpha-value>)',
'accent-fg': 'hsl(var(--accent-fg) / <alpha-value>)',
surface: 'hsl(var(--surface) / <alpha-value>)',
'surface-2': 'hsl(var(--surface-2) / <alpha-value>)',
card: 'hsl(var(--card-bg) / <alpha-value>)',
base: 'hsl(var(--text) / <alpha-value>)',
muted: 'hsl(var(--text-muted) / <alpha-value>)',
'border-base': 'hsl(var(--border-base) / <alpha-value>)',
'border-subtle': 'hsl(var(--border-subtle) / <alpha-value>)',
'border-layout': 'hsl(var(--border-layout) / <alpha-value>)',
positive: 'hsl(var(--positive) / <alpha-value>)',
negative: 'hsl(var(--negative) / <alpha-value>)',
sidebar: 'hsl(var(--sidebar-bg) / <alpha-value>)',
'sidebar-text': 'hsl(var(--sidebar-text) / <alpha-value>)',
'sidebar-accent': 'hsl(var(--sidebar-accent) / <alpha-value>)',
},
divideColor: {
'border-base': 'hsl(var(--border-base) / <alpha-value>)',
'border-subtle': 'hsl(var(--border-subtle) / <alpha-value>)',
'border-layout': 'hsl(var(--border-layout) / <alpha-value>)',
},
},
},
plugins: [],
}