-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 1.79 KB
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 1.79 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
'background-secondary': 'rgb(var(--background-secondary) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
card: 'rgb(var(--card) / <alpha-value>)',
'card-foreground': 'rgb(var(--card-foreground) / <alpha-value>)',
popover: 'rgb(var(--popover) / <alpha-value>)',
'popover-foreground': 'rgb(var(--popover-foreground) / <alpha-value>)',
primary: 'rgb(var(--primary) / <alpha-value>)',
'primary-foreground': 'rgb(var(--primary-foreground) / <alpha-value>)',
secondary: 'rgb(var(--secondary) / <alpha-value>)',
'secondary-foreground': 'rgb(var(--secondary-foreground) / <alpha-value>)',
muted: 'rgb(var(--muted) / <alpha-value>)',
'muted-foreground': 'rgb(var(--muted-foreground) / <alpha-value>)',
accent: 'rgb(var(--accent) / <alpha-value>)',
'accent-foreground': 'rgb(var(--accent-foreground) / <alpha-value>)',
destructive: 'rgb(var(--destructive) / <alpha-value>)',
'destructive-foreground': 'rgb(var(--destructive-foreground) / <alpha-value>)',
border: 'rgb(var(--border) / <alpha-value>)',
input: 'rgb(var(--input) / <alpha-value>)',
ring: 'rgb(var(--ring) / <alpha-value>)',
},
},
},
plugins: [require('tailwind-scrollbar')],
}