-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.39 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./index.html", "./src/**/*.bs.js"],
theme: {
screens: {
sm: "740px",
},
fontSize: {
h1: [
"40px",
{
lineHeight: "48px",
},
],
},
colors: {
border_active: "var(--border-active-blue-france)",
primary_light: "var(--artwork-major-blue-france)",
primary_dark: "#376c2e",
text_light: "var(--text-default-grey)",
text_dark: "#2F2F2F",
purple_bg: "#c6a8ec",
purple_bg_hover: "#c6a8ec",
purple_text: "#55377b",
purple_text_hover: "#734da3",
button_fg: "#376c2e",
button_bg: "#a8ecb1",
button_fg_hover: "#376c2eb5",
button_bg_hover: "#b5ffbe",
background: "var(--background-alt-grey)",
green: "#376c2e",
orange: "#FF732C",
orange_50: "#FFD6C2",
red: "#FE5F55",
yellow: "#ecc94b",
white: "#ffffff",
rainforest: "#007663",
rainforest_50: "#C2FFF5",
gray: "#e4eaf3",
gray_2: "#ebeef3",
gray_light: "#fcfcfc",
gray_medium: "#d1d6dd",
gray_dark: "#706a63",
secondary: "#B6B9B9",
tertiary: "#B6A999",
nv: "#996633",
nc: "#BB0066",
mb: "#6600EE",
mi: "#0000DD",
mf: "#6600EE",
},
maxHeight: {
128: "50rem",
},
margin: {
h1: "24px",
},
},
};