-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.18 KB
/
Copy pathtailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
xl: { max: '1280px' },
lg: { max: '992px' },
md: { max: '768px' },
sm: { max: '480px' },
},
extend: {
colors: {
primary: '#4f46e5',
secondary: '#6366f1',
'secondary-hover': 'rgb(0 0 0 / 0.05)',
'border-default': 'rgb(0 0 0 / 0.1)',
'border-dark': 'rgb(17 24 39 / 0.5)',
},
textDecorationColor: {
green: '#16a34a',
sky: '#0ea5e9',
},
boxShadow: {
sectionInput: '0 0 10px rgba(0,0,0,0.10)',
},
animation: {
'fade-in-out': 'fadeInOut 1.2s linear infinite',
flicker: 'flicker 0.5s infinite',
},
keyframes: {
fadeInOut: {
'0%, 100% ': {
opacity: '1',
},
'50%': {
opacity: '0.5',
},
},
flicker: {
'0%': {
opacity: 0,
},
'50%': {
opacity: 1,
},
'100%': {
opacity: 0,
},
},
},
},
},
plugins: [],
};