forked from JusGu/uwatering
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.13 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["*.{html,js}", "javascript/**/*.{js,ts}"],
theme: {
extend: {
fontFamily: {
latinMonoRegular: "latin-mono-regular, ui-mono",
latinMonoCaps: "latin-mono-caps, ui-mono",
latinMonoCondOblique:
"latin-mono-cond-oblique, latin-mono-regular, ui-mono",
latinRoman: "latin-roman, ui-serif",
latinRomanCaps: "latin-roman-caps, ui-serif",
latinRomanDunhillOblique:
"latin-roman-dunhill-oblique, latin-mono-caps, ui-serif",
lion: "Times New Roman, Times, serif",
},
colors: {
mustard: {
500: "#B26500",
400: "#DAAD30",
100: "#FFFCF7",
},
burgundy: {
500: "#B52828",
400: "#CD1543",
},
navy: {
900: "#0A0D1E",
800: "#151620",
500: "#4F587C",
400: "#4977A1",
},
lime: {
700: "#485521",
400: "#9E9E38",
},
black: {
900: "#202020",
800: "#19191B",
},
},
},
},
plugins: [],
};