-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.23 KB
/
Copy pathtailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.23 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/frontend/booking/src/**/*.elm",
"./src/frontend/admin/src/**/*.elm",
"./src/backend/wwwroot/index.html",
"./src/backend/wwwroot/admin/index.html",
],
theme: {
extend: {
colors: {
sand: {
50: "#FDFCF8",
100: "#FAF9F0",
200: "#F0EDE2",
300: "#DDD9CB",
400: "#B8B3A4",
500: "#87867F",
600: "#5E5D58",
700: "#3D3D38",
800: "#2A2A26",
900: "#131314",
},
coral: {
DEFAULT: "#5B8A72",
light: "#7BA692",
dark: "#3F6B54",
},
},
fontFamily: {
sans: [
'"Styrene A"',
"system-ui",
"-apple-system",
"Segoe UI",
"sans-serif",
],
display: [
'"Tiempos Headline"',
"Georgia",
'"Times New Roman"',
"serif",
],
},
fontSize: {
question: ["2rem", { lineHeight: "1.2", letterSpacing: "-0.01em" }],
"question-lg": [
"2.5rem",
{ lineHeight: "1.15", letterSpacing: "-0.02em" },
],
},
},
},
plugins: [],
};