This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
75 lines (74 loc) · 1.86 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
// const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ["./src/**/*.{ts,tsx,scss,css}", "index.html"],
theme: {
screens: {
"4xl": { max: "2699px" },
"3xl": { max: "1750px" },
"2xl": { max: "1535px" },
xl: { max: "1279px" },
lg: { max: "1023px" },
md: { max: "767px" },
sm: { max: "639px" },
},
colors: {
chargePurple: "#240046",
navy: "#071927",
"light-gray": "#F3F3F3",
"bg-dark-gray": "#F3F3F3",
"modal-bg": "#F2F2F2",
lightBlue: "#063B64",
purple: "#7A159A",
gray: "#BABABA",
"dark-gray": "#E7E7E7",
"selected-gray": "#D0D7DE",
"selected-light-gray": "#E5E7EB",
"text-dark-gray": "#666666",
"secondary-gray": "#525252",
"text-gray": "#9F9F9F",
"text-darker-gray": "#737373",
"text-heading-gray": "#4D4D4D",
"text-inactive": "#D1D1D1",
"fuse-green": "#20B92E",
"fuse-green-light": "#B4F9BA",
white: "#FFFFFF",
"fuse-black": "#1A1A1A",
black: "#000000",
warning: "#FFF3DD",
error: "#FFDDDD",
success: "#E0FFDD",
inactive: "#EBEBEB",
"warning-dark": "#A86D00",
"error-dark": "#750000",
"success-dark": "#0A7500",
"inactive-dark": "#E5E5E6",
"button-inactive": "#808080",
"stake-inactive": "#B3B3B3",
"warning-yellow": "#FFD764",
"warning-gray": "#3B4145",
},
fontFamily: {
mona: ["Mona-Sans"],
},
extend: {
spacing: {
0.5: "0.125rem",
"1/9": "11.1%",
"8/9": "88.9%",
"3/10": "30%",
"1/10": "10%",
"9/10": "90%",
},
fontSize: {
"xl": "1rem",
"5xl": "2.5rem",
},
borderWidth: {
0.5: "0.5px",
},
animation: {
"fade-in": "fadeIn 0.5s ease-in-out",
},
},
},
};