-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
dropShadow: {
'3xl': '0 10px 15px rgba(145, 144, 144, 0.25)',
box: '3px 3px 4px #292929',
dark: '6px 6px 8px #e0e0e0',
},
backgroundColor: {
'd-col': '#444444',
'l-col': '#ffffff',
},
backgroundImage: {
'dark-lg':
'linear-gradient(to right bottom, #191819, #212022, #2a292b, #323235, #3a3b3f, #3d3f42, #3f4246, #3d4042, #414446, #404344, #3f4141, #3e3f3f)',
'light-lg':
'linear-gradient(to right bottom, #fdfafd, #e9e6ef, #d1d3e2, #b5c2d5, #96b2c5, #93b2c3, #90b2c1, #8db2be, #a5c1cc, #bdd1da, #d4e1e8, #ebf1f5)',
},
transitionProperty: {
'tr-bg': 'background-image',
'left-right': 'left, right',
},
transitionDuration: {
2000: '2000ms',
},
transitionDelay: {
2000: '2000ms',
},
},
},
plugins: [],
};