-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
126 lines (126 loc) · 3.24 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
124
125
126
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
backgroundImage: {
blockchain: "url('../features/protocol/images/block.svg')",
key: "url('../features/merkle-drop/images/key.svg')",
contact: "url('../features/contact/images/contact.svg')",
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
fontSize: {
"heading-hero": "3.5rem",
},
letterSpacing: {
tightest: "-0.01em",
"max-tightest": "-0.0324em",
},
colors: {
"rich-black": {
lightest: "#6C6C73",
lighter: "#3E3E48",
DEFAULT: "#12121F",
},
grey: {
lighter: "#EDEDED",
DEFAULT: "#DBDBDC",
darker: "#98989D",
},
"white": {
DEFAULT: "#FFFFFF",
darker: "#FAFAFA",
},
"off-white": {
DEFAULT: "#F9F9F9",
},
"coral-red": {
lightest: "#EFAE95",
lighter: "#FFD2BF",
DEFAULT: "#FF7C4E",
},
"coral-pastel": {
DEFAULT: "rgba(255, 210, 191, 1)",
},
"app-blue": {
lightest: "#E6EFFC",
DEFAULT: "#007AFF",
},
"protocol-blue": {
DEFAULT: "#1e8cc3",
},
"majorelle-blue": {
lightest: "#FFF0FF",
lighter: "#BEB6EC",
light: "#897AE7",
DEFAULT: "#7657ED",
pastel: "#E5E0FF",
},
"neon-pink": {
DEFAULT: "#FFA0B7",
},
"pink-pastel": {
DEFAULT: "#FFDFE7",
},
"aquamarine-green": {
lighter: "#89E4C5",
light: "#E1FFF3",
DEFAULT: "#09E0A3",
dark: "#07956D",
},
"dark-green": {
lighter: "rgba(14, 195, 144, 0.25)",
DEFAULT: "#0EC390",
darker: "#0FA87F",
pastel: "#D0FBE9",
},
"cyber-yellow": {
DEFAULT: "#FFD41E",
darker: "#DCAE0B",
lighter: "rgba(255, 244, 209, 0.75)",
},
"card-colors": {
majorelle: "rgba(118, 87, 237, 0.95)",
green: "rgba(9, 224, 163, 0.95)",
blue: "rgba(0, 122, 255, 0.65)",
darkest_grey: "#151515",
input_grey:"#363636",
},
},
boxShadow: {
"card-blue": "0px 0px 25px rgba(0, 122, 255, 0.1)",
"card-gray": "0px 0px 25px rgba(0, 0, 0, 0.08)",
"card-gray-light": "0px 0px 25px #111111",
"card-neon-pink": "0px 0px 25px 0px rgba(255, 160, 183, 0.25)",
"card-coral-red": " 0px 0px 12.1988px rgba(255, 124, 78, 0.22)",
"card-dark-green": "0px 0px 12.1988px rgba(14, 195, 144, 0.17)",
"glow-app-blue": "0px 15px 37px rgba(0, 122, 255, 0.25)",
"glow-coral-red": "0px 15px 37px rgba(255, 124, 78, 0.25)",
},
zIndex: {
"-1": "-1",
"-10": "-10",
},
stroke: {
current: "currentColor",
},
strokeWidth: {
"4/3": "1.33",
},
scale: {
"-100": "-1",
},
},
container: {
padding: "4rem",
},
},
variants: {
extend: {
ringColor: "hover",
},
},
plugins: [],
};