-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (40 loc) · 864 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (40 loc) · 864 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
colors: {
text: "#EEEEEE",
background: "#1E1E1E",
primary: "#222831",
secondary: "#89BAC9",
accent: "#E74444",
},
// fontFamily: {
// heading: "undefined",
// body: "Noto Sans Imperial Aramaic",
// },
fontSize: {
sm: "0.750rem",
base: "1rem",
xl: "1.333rem",
"2xl": "1.777rem",
"3xl": "2.369rem",
"4xl": "3.158rem",
"5xl": "4.210rem",
},
// fontFamily: {
// heading: "undefined",
// body: "Tourney",
// },
fontFamily: {
heading: "undefined",
body: "Turret Road",
},
// fontWeight: {
// normal: '400',
// bold: '700',
// },
},
plugins: [],
};