-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
accent: '#E8490C',
'accent-light': '#FAB79E',
background: {
'light': '#e9e9e9',
'dark': '#18191A',
'card-dark': '#242528',
'card-light': '#EFEFF0',
'accent-soft': '#E8490C0D'
},
stroke: {
'dark-light': '#FFFFFF0D', // 0D = 5% opacity
'light-light': '#0000000D',
'dark-gray': '#61646B',
'light-gray': '#a3a3a3',
},
foreground: 'var(--foreground)',
divider: {
'light': '#d4d4d4', // neutral-300
'dark': '#404040', // neutral-700
},
button: {
'soft-dark': '#FDBA741A', // 1A = 10% opacity
'soft-dark-hover': '#FB82041A', // 1A = 10% opacity
'soft-light': '#FDBA7466', // 66 = 40% opacity
'soft-light-hover': '#FB820466', // 66 = 40% opacity
'solid': '#E8490C',
'solid-hover': '#C23D0A',
'soft-red': '#E80C0C1A',
'soft-red-hover': '#E80C0C33'
},
text: {
'primary-dark': '#e5e5e5', // neutral-200
'secondary-dark': '#a3a3a3', // neutral-400
'primary-light': '#171717', // neutral-900
'secondary-light': '#737373', // neutral-500
'red': '#E80C0C'
}
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
}
}
},
plugins: [require("tailwindcss-animate")],
};