generated from pittcsc/csc-hacks-sample-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.04 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
module.exports = {
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
sans: ["Montserrat", "sans-serif"],
serif: ["Libre Baskerville", "serif"],
title: ["Space Mono"],
},
extend: {
colors: {
brown: "#2F0D0B",
red: "#9B0F09",
navy: "#07123B",
pine: "#183D36",
beige: {
light: "#F0ECE6",
DEFAULT: "#E6DDCF",
dark: "#D1B697",
},
rust: "#BB6940",
teal: "#22617E",
emerald: "#2E6051",
},
textColor: {
brown: "#2F0D0B",
red: "#9B0F09",
navy: "#07123B",
pine: "#183D36",
beige: {
light: "#F0ECE6",
DEFAULT: "#E6DDCF",
dark: "#D1B697",
},
rust: "#BB6940",
teal: "#22617E",
emerald: "#2E6051",
},
},
},
variants: {
extend: {
fill: ["hover", "focus", "group-hover", "group-focus"],
stroke: ["hover", "focus", "group-hover", "group-focus"],
},
},
plugins: [],
};