-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 817 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 817 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}"
],
darkMode: true, // Or 'media' or 'class'
theme: {
extend: {
height: {
"fit-content": "fit-content"
},
minHeight: {
10: "2.5rem",
14: "3.5rem"
},
width: {
"fit-content": "fit-content"
},
boxShadow: {
"top-bottom-inner": "inset 0px 11px 8px -10px rgb(0 0 0 / 50%),inset 0px -11px 8px -10px rgb(0 0 0 / 50%)"
}
},
fontFamily: {
sen: ["Sen", "sans-serif"]
},
colors: {
ebonyClay: "#1f2937",
riverBed: "#4c5666",
pattensBlue: "#dbf2ff",
goldenGrass: "#dea01e",
...defaultTheme.colors
}
},
variants: {
extend: {}
},
plugins: []
};