-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (47 loc) · 1.18 KB
/
Copy pathtailwind.config.js
File metadata and controls
49 lines (47 loc) · 1.18 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
rotate: {
"-180": "-180deg",
"-90": "-90deg",
"-45": "-45deg",
0: "0",
45: "45deg",
90: "90deg",
135: "135deg",
180: "180deg",
225: "225deg",
270: "270deg",
},
extend: {
fontFamily: {
heading: ["Orbitron", ...defaultTheme.fontFamily.sans],
secondary: ["Montserrat", ...defaultTheme.fontFamily.serif],
},
colors: {
offBlack: {
DEFAULT: "#151515",
},
racingGreen: {
DEFAULT: "#004225",
},
},
backgroundImage: {
"gradient-radial": "radial-gradient(#004225, #000000)",
},
gridTemplateRows: {
12: "repeat(12, minmax(0, 1fr))",
},
gridRow: {
"span-12": "span 12 / span 12",
},
},
},
variants: {
extend: { backgroundColor: ["odd"] },
},
plugins: [require("@tailwindcss/forms")],
};
// purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"]