-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.68 KB
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.68 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
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: ['media', 'class'],
theme: {
extend: {
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
card: 'var(--card)',
'card-foreground': 'var(--card-foreground)',
popover: 'var(--popover)',
'popover-foreground': 'var(--popover-foreground)',
primary: 'var(--primary)',
'primary-foreground': 'var(--primary-foreground)',
secondary: 'var(--secondary)',
'secondary-foreground': 'var(--secondary-foreground)',
muted: 'var(--muted)',
'muted-foreground': 'var(--muted-foreground)',
accent: 'var(--accent)',
'accent-foreground': 'var(--accent-foreground)',
destructive: 'var(--destructive)',
'destructive-foreground': 'var(--destructive-foreground)',
border: 'var(--border)',
input: 'var(--input)',
ring: 'var(--ring)',
'chart-1': 'var(--chart-1)',
'chart-2': 'var(--chart-2)',
'chart-3': 'var(--chart-3)',
'chart-4': 'var(--chart-4)',
'chart-5': 'var(--chart-5)',
sidebar: 'var(--sidebar)',
'sidebar-foreground': 'var(--sidebar-foreground)',
'sidebar-primary': 'var(--sidebar-primary)',
'sidebar-primary-foreground': 'var(--sidebar-primary-foreground)',
'sidebar-accent': 'var(--sidebar-accent)',
'sidebar-accent-foreground': 'var(--sidebar-accent-foreground)',
'sidebar-border': 'var(--sidebar-border)',
'sidebar-ring': 'var(--sidebar-ring)',
},
},
},
plugins: [require('tailwindcss-animate')],
};