-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
123 lines (122 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
primary: "#23A1AF",
primary1: "rgba(35, 161, 175, 0.75)",
primary2: "rgba(35, 161, 175, 0.50)",
primary3: "rgba(35, 161, 175, 0.25)",
primary4: "rgba(35, 161, 175, 0.10)",
"primary-text": "#1C7E87",
accent: "#F7559E",
accent1: "rgba(247, 85, 158, 0.75)",
accent2: "rgba(247, 85, 158, 0.50)",
accent3: "rgba(247, 85, 158, 0.25)",
"accent-text": "#E50B6D",
text: "#001111",
text1: "rgba(0, 17, 17, 0.75)",
text2: "rgba(0, 17, 17, 0.50)",
text3: "rgba(0, 17, 17, 0.25)",
background: "#FCFEFE",
link: "#285ED7",
success: "#41993F",
success1: "rgba(65, 153, 63, 0.75)",
success2: "rgba(65, 153, 63, 0.50)",
success3: "rgba(65, 153, 63, 0.25)",
error: "#D61F14",
white: "#FFF",
divider: "rgba(15, 1, 41, 0.10)",
border: "#79747E",
},
fontFamily: {
sans: ["Lato", "sans-serif"],
},
fontSize: {
header1: [
"4rem",
{
letterSpacing: "-2%",
fontWeight: "700",
},
],
header2: [
"3.5rem",
{
letterSpacing: "-2%",
fontWeight: "700",
},
],
header3: [
"2.25rem",
{
letterSpacing: "-2%",
fontWeight: "600",
},
],
header4: [
"1.5rem",
{
letterSpacing: "-0.48px",
fontWeight: "400",
},
],
"bold-body": [
"1.125rem",
{
fontWeight: "700",
},
],
subtitle: [
"1.25rem",
{
fontWeight: "400",
},
],
body: [
"1.125rem",
{
lineHeight: "140%",
fontWeight: "400",
},
],
"small-body": [
"1rem",
{
fontWeight: "400",
},
],
"button-text": [
"1rem",
{
letterSpacing: "0.1px",
fontWeight: "500",
},
],
caption: [
"0.875rem",
{
letterSpacing: "0%",
fontWeight: "400",
},
],
"over-line": [
"0.875rem",
{
letterSpacing: "4%",
fontWeight: "400",
},
],
},
extend: {
borderRadius: {
"4xl": "1.75rem",
},
boxShadow: {
"box-shadow": "0px 3px 3px 0px rgba(0, 0, 0, 0.14)",
"card-shadow": "0px 0px 3px 1px rgba(0, 0, 0, 0.10)",
},
},
},
plugins: [],
};