-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (68 loc) · 1.94 KB
/
Copy pathtailwind.config.js
File metadata and controls
69 lines (68 loc) · 1.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
gray: {
10: 'rgba(255, 255, 255, 1)',
20: 'rgba(249, 249, 249, 1)',
30: 'rgba(207, 207, 207, 1)',
40: 'rgba(129, 129, 129, 1)',
50: 'rgba(81, 81, 81, 1)',
60: 'rgba(0, 0, 0, 1)',
},
brown: {
10: 'rgba(245, 241, 238, 1)',
20: 'rgba(228, 213, 201, 1)',
30: 'rgba(199, 187, 181, 1)',
40: 'rgba(84, 47, 26, 1)',
50: 'rgba(52, 25, 9, 1)',
},
blue: {
50: 'rgba(24, 119, 242, 1)',
},
yellow: {
50: 'rgba(254, 229, 0, 1)',
},
red: {
50: 'rgba(185, 51, 51, 1)',
},
dim: 'rgba(0,0,0, 0.54)',
},
boxShadow: {
'1pt': '0px 4px 4px 0px rgba(140, 140, 140, 0.25)',
'2pt': '0px 4px 4px 0px rgba(0, 0, 0, 0.25)',
'3pt': '0px 16px 20px 0px rgba(48, 48, 48, 0.62)',
},
screens: {
desktop: '1200px',
pc: '1200px',
tablet: '868px',
},
animation: {
'slide-up-fade-urlCopy': 'slideUpFade 0.5s ease-out, fadeOut 0.5s ease-out 4.6s',
'slide-up-fade-delete': 'slideUpFade 0.5s ease-out, fadeOut 0.5s ease-out 2.6s',
'slide-up-fade-modal': 'slideUpFade 0.5s ease-out',
},
gridTemplateColumns: {
mobileLow: 'repeat(2, 1fr)',
tabletLow: 'repeat(4, minmax(186px, 220px))',
},
fontFamily: {
actor: ['Actor', 'sans-serif'],
},
keyframes: {
slideUpFade: {
'0%': { transform: 'translateX(-50%) translateY(30px)', opacity: '0' },
'100%': { transform: 'translateX(-50%) translateY(0px)', opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
},
},
},
plugins: [],
};