forked from fuseio/console-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
118 lines (117 loc) · 3.13 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
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",
"transaction-bg": "#F7F7F7",
lightBlue: "#063B64",
purple: "#7A159A",
gray: "#BABABA",
"dark-gray": "#E7E7E7",
"darker-gray": "#C2C2C2",
"selected-gray": "#D0D7DE",
"selected-light-gray": "#E5E7EB",
"text-dark-gray": "#666666",
"secondary-gray": "#797979",
"tertiary-gray": "##525252",
"text-gray": "#9F9F9F",
"text-darker-gray": "#737373",
"text-heading-gray": "#4D4D4D",
"lighter-gray": "#5F6B79",
"text-inactive": "#D1D1D1",
"lighter-blue": "#EEF2F6",
"fuse-green": "#20B92E",
"fuse-green-bright": "#8EFF98",
"pale-green": "#A3F5AA",
"pale-green-light": "#A2F5AA",
white: "#FFFFFF",
"fuse-black": "#1A1A1A",
black: "#000000",
warning: "#FFF3DD",
error: "#FFDDDD",
success: "#B4F9BA",
"success-light": "#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",
"border-gray": "#E6E6E6",
"border-dark-gray": "#E8E8E8",
"lightest-gray": "#D9D9D9",
"gray-alpha-40": "#00000066",
"warning-border": "#D4A72C",
"warning-bg": "#FFF8C5",
"night": "#0A0A0A",
"ghost": "#CBCBCB",
"iron": "#D7D7D7",
"red-600": "#dc2626",
"pink-swan": "#B8B8B8",
"soft-peach": "#EDEDED",
"lemon-chiffon": "#FFF9C3",
"pastel-gray": "#CDCDCD",
"star-dust-alpha-70": "#9f9f9fb3",
"gray-goose": "#CFCFCF",
"dune": "#333333",
"dove-gray": "#6B6B6B",
},
fontFamily: {
mona: ["var(--font-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",
},
transform: ["group-hover"],
gridTemplateColumns: {
'auto-fit-400': 'repeat(auto-fit, minmax(400px, 1fr))',
'auto-fit-250': 'repeat(auto-fit, minmax(250px, 1fr))',
},
colors: {
"light-blue": "#CDD9E5",
},
boxShadow: {
'inner-black': 'inset 0px 0px 0px 3px rgba(0,0,0,0.3)',
}
},
},
plugins: [],
}
export default config