-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#0f172aff',
foreground: '#f8fafc',
},
destructive: {
DEFAULT: '#ef4444ff',
foreground: '#f8fafc',
},
muted: {
DEFAULT: '#f3f4f6ff',
foreground: '#817f84ff',
},
warning: {
DEFAULT: '#fbbf24ff',
foreground: '#f8fafc',
},
success: {
DEFAULT: '#22c55eff',
foreground: '#f8fafc',
},
accent: '#f3f4f6ff',
border: '#e8eaedff',
ring: '#d1d5dbff',
background: '#ffffff',
ai: '#75ac9d',
},
keyframes: {
rotate: {
'0%': { transform: 'rotate(0deg)' },
'50%': { transform: 'rotate(180deg)' },
'100%': { transform: 'rotate(360deg)' },
},
},
},
},
plugins: [require('tailwindcss-animate')],
};