-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
50 lines (48 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./src/lib/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
keyframes: {
slideInLeft: {
'0%': { opacity: '0', transform: 'translateX(-30%)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
slideInRight: {
'0%': { opacity: '0', transform: 'translateX(30%)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
},
animation: {
slideInLeft: 'slideInLeft 0.7s ease-in-out',
slideInRight: 'slideInRight 0.7s ease-in-out',
},
screens: {
xs: { max: '600px' },
xxs: { max: '375px' },
},
colors: {
primary: '#f56e26',
black: '#000000',
red: '#FF3B30',
gray: {
78: '#787486',
'9f': '#9FA6B2',
d9: '#D9D9D9',
ee: '#EEEEEE',
fa: '#FAFAFA',
98: '#989898',
66: '#666666',
},
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
};