-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
71 lines (71 loc) · 1.54 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
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",
},
keyframes: {
"fade-up": {
"0%": {
opacity: "0",
transform: "translateY(20px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"fade-up": "fade-up 0.5s ease-out forwards",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
cursor: ["disabled"],
textColor: ["disabled"],
},
},
plugins: [],
};