-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.02 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [],
theme: {
container: {
center: true,
padding: "2rem",
},
colors: {
lightgreen: "#d4fce8",
green1: "#323232",
tan1: "#84a9ac",
baby1: "#e4e3e3",
lime1: "#A1C16D",
bluem1: "#eeeeee",
blueLight1: "#b2ebf2",
black: "#000000",
white: "#ffffff",
skyBlue: "#36A2EB",
},
height: (theme) => ({
"screen/2": "50vh",
"screen/3": "calc(100vh * .65)",
"screen/4": "calc(100vh / 4)",
"screen/5": "calc(100vh * .1)",
"screen/6": "calc(100vh * .07)",
"screen/7": "calc(100vh * .51)",
"screen/1": "100vh",
}),
},
variants: {},
plugins: [
require("@tailwindcss/ui")({
layout: "sidebar",
}),
],
};