-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (39 loc) · 960 Bytes
/
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
// /** @type {import('tailwindcss').Config} */
// export default {
// content: [
// './src/**/*{html,js,ts}',
// ],
// theme: {
// extend: {},
// },
// plugins: [],
// }
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,ts}'],
theme: {
extend: {
width: {
'97': '97%',
},
colors: {
'c-bg-page': 'hsl(37, 10%, 92%)',
'c-body-gradient': 'hsl(37, 12%, 84%)',
'blue-gray': '#eceff180',
},
backgroundImage: {
'custom-gradient': 'linear-gradient(to bottom, hsl(37, 12%, 84%), hsl(37, 10%, 92%) 116px)',
},
keyframes: {
pulse: {
'0%, 100%': { backgroundColor: 'transparent', borderColor: 'transparent' },
'50%': { backgroundColor: '#3b82f6', borderColor: '#3b82f6' },
},
},
animation: {
'pulse-blue': 'pulse 2s infinite',
},
},
},
plugins: [],
};