-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (77 loc) · 1.78 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
75
76
77
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"sp-orange": "rgba(255, 141, 27, 1)",
"sp-orange2": "rgba(251, 146, 36, 1)",
"sp-orange3": "rgba(254, 141, 27, 1)",
"sp-gray": "rgba(231, 231, 231, 1)",
"sp-gray2": "rgba(79, 79, 79, 1)",
"sp-gray3": "rgba(238, 238, 238, 1)",
},
boxShadow: {
"co-input-1": "0px 2px 40px rgba(0, 0, 0, 0.1)",
"sp-navbar": "0px 10px 10px rgba(0, 0, 0, 0.05)",
"sp-input": "0px 2px 40px rgba(0, 0, 0, 0.1)",
},
fontSize: {
spSize1: [
"40px",
{
lineHeight: "51px",
},
],
spSize2: [
"20px",
{
lineHeight: "25px",
},
],
MainH1Size: [
"50px",
{
lineHeight: "64px",
},
],
contactSize: [
"18px",
{
lineHeight: "23px",
},
],
rentH1Size: [
"35px",
{
lineHeight: "45px",
},
],
},
animation: {
"navbar-anim": "nav 0.5s ease-in-out ",
"gradient-xy": "gradient-xy 15s ease infinite",
},
keyframes: {
nav: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
"gradient-xy": {
"0%, 100%": {
"background-size": "400% 400%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
},
},
plugins: [],
};