-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
executable file
·65 lines (62 loc) · 1.59 KB
/
tailwind.config.cjs
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
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
main: '#38C6F4',
dark: '#1F5B92',
light: '#FF9169',
alert: '#DC2626',
textBlack: '#212121',
textGray: '#606060',
textGrayLight: '#b2bbc0',
textLink: '#38C6F4',
textWhite: '#FFFFFF',
bgWhite: '#FFFFFF',
bgGray: '#E5E5E5',
bgGrayMid: '#F2F2F2',
bgGrayLight: '#F9F9F9',
bgDark: '#1D1D1D',
bgDarkMid: '#2C2C2C',
bgDarkLight: '#383838',
borderGray: '#E5E5E5',
},
extend: {
animation: {
'slide-in-right':
'slide-in-fwd-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both',
'slide-out-right':
'slide-out-fwd-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both',
},
keyframes: {
'slide-in-fwd-right': {
'0%': {
transform: 'translateZ(-1400px) translateX(1000px)',
opacity: '0',
},
to: {
transform: 'translateZ(0) translateX(0)',
opacity: '1',
},
},
'slide-out-fwd-right': {
'0%': {
transform: 'translateZ(0) translateX(0)',
opacity: '1',
},
to: {
transform: 'translateZ(600px) translateX(400px)',
opacity: '0',
},
},
},
},
},
darkMode: 'class',
plugins: [require('daisyui')],
};