forked from ethereum/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (56 loc) · 1.21 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
sans: ["IBM Plex Sans", "Roboto", "sans-serif"],
},
extend: {
colors: {
ceruleanBlue: {
100: "#E8EFFF",
200: "#A9BDEE",
300: "#7693DA",
400: "#4C6FC4",
500: "#2B50AA", // Primary base
600: "#1C3E8E",
700: "#142D6B",
800: "#0E204E",
900: "#08132F",
},
lightCoral: {
100: "#FFCCD0",
200: "#FFBABF",
300: "#FFA9AF",
400: "#FF9AA1",
500: "#FF858D", // Secondary base
600: "#D65861",
700: "#AE373F",
800: "#851F26",
900: "#5D0E13",
},
partialMatch: {
100: "#D9EDB8",
200: "#CEEC9E",
300: "#BBE577",
400: "#A4D851",
500: "#87B141",
600: "#6A9B1B",
700: "#4C730E",
800: "#395808",
900: "#273D04",
},
},
minHeight: {
96: "350px",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
cursor: ["disabled"],
textColor: ["disabled"],
},
},
plugins: [],
};