forked from leandronorcio/munia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 2.15 KB
/
tailwind.config.js
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
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/contexts/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgba(var(--foreground) / <alpha-value>)',
card: 'rgba(var(--card) / <alpha-value>)',
'card-foreground': 'rgba(var(--card-foreground) / <alpha-value>)',
popover: 'rgba(var(--popover) / <alpha-value>)',
'popover-foreground': 'rgba(var(--popover-foreground) / <alpha-value>)',
primary: 'rgba(var(--primary) / <alpha-value>)',
'primary-foreground': 'rgba(var(--primary-foreground) / <alpha-value>)',
'primary-accent': 'rgba(var(--primary-accent) / <alpha-value>)',
secondary: 'rgba(var(--secondary) / <alpha-value>)',
'secondary-foreground':
'rgba(var(--secondary-foreground) / <alpha-value>)',
'secondary-accent': 'rgba(var(--secondary-accent) / <alpha-value>)',
muted: 'rgba(var(--muted) / <alpha-value>)',
'muted-foreground': 'rgba(var(--muted-foreground) / <alpha-value>)',
accent: 'rgba(var(--accent) / <alpha-value>)',
'accent-foreground': 'rgba(var(--accent-foreground) / <alpha-value>)',
success: 'rgba(var(--success) / <alpha-value>)',
'success-foreground': 'rgba(var(--success-foreground) / <alpha-value>)',
warning: 'rgba(var(--warning) / <alpha-value>)',
'warning-foreground': 'rgba(var(--warning-foreground) / <alpha-value>)',
destructive: 'rgba(var(--destructive) / <alpha-value>)',
'destructive-foreground':
'rgba(var(--destructive-foreground) / <alpha-value>)',
border: 'rgba(var(--border) / <alpha-value>)',
input: 'rgba(var(--input) / <alpha-value>)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
darkMode: 'class',
plugins: [],
};