-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 899 Bytes
/
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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
purge: {
enabled: process.env.NODE_ENV === "production",
content: ["./src/**/*.tsx"],
},
darkMode: "class", // or 'media' or 'class'
theme: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
extend: {
fontFamily: {
bungee: ["Bungee"],
},
colors: {
background: {
primary: {
dark: "#151719",
light: defaultTheme.colors.gray[50],
},
secondary: {
dark: "#181a1c",
light: defaultTheme.colors.gray[100],
},
},
primary: "#308d46",
secondary: "#25282c",
orange: colors.orange,
helix: "#FFA827",
},
},
},
variants: {
extend: {},
},
plugins: [],
};