-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
height: {
'100': '26rem',
'110': '28rem',
'128': '32rem',
},
blur: {
"4xl": '80px',
},
margin: {
'16': '3.5rem',
'20': '4.5rem',
'neg20': '-1rem',
},
backgroundImage: {
'hero-bg': "url('/bg.svg')",
},
maxWidth: {
'1/10': '10%',
'1/5': '20%',
'1/4': '25%',
'1/2': '300px',
'3/4': '75%',
},
borderRadius: {
'4xl': '1.875rem'
},
colors: {
"cool-blue": "#38bdf8",
"cool-indaco": "#A0B6FD",
"accented-background": "#301e43"
},
boxShadow: {
"cool-white-border": "rgb(255 255 255 / 10%) 0px 0px 0px 1px inset",
"cool-purple-border": "#9575CDCC 0px 0px 0px 0.5px inset",
"cool-accented-border": "#301e43 0px 0px 0px 0.5px inset",
"cool-white-border-and-shadow": "rgb(255 255 255 / 20%) 0px 0px 0px 0.5px inset, #9575CD40 0px 0px 20px",
},
backgroundSize: {
'size-200': '200% 200%',
'size-100': '100% 100%'
},
backgroundPosition: {
'pos-0': '0% 0%',
'pos-100': '100% 100%',
},
scale: {
'60': '.6',
'70': '.7'
},
keyframes: {
vibeLeft: {
'0%, 100%': { left: '20%' },
'50%': { left: '10%' },
},
vibeRight: {
'0%, 100%': { right: '50%' },
'50%': { right: '60%' },
}
},
},
},
plugins: [],
safelist: [
'w-72'
],
}