-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1.03 KB
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: 'rgb(14 165 233)', // sky-500
hover: 'rgb(2 132 199)', // sky-600
},
background: 'rgb(15 23 42)', // slate-900
surface: 'rgb(30 41 59)', // slate-800
'text-primary': 'rgb(248 250 252)', // slate-50
'text-secondary': 'rgb(148 163 184)', // slate-400
},
boxShadow: {
'card': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
'card-hover': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}