-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 994 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
module.exports = {
purge: [],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
screens: {
sm: "500px",
},
colors: {
base: "#ecf0f3",
biruMuda: "#55C2E1",
hitamTransparent: "rgba(0,0,0,0.5)",
darkBase: "#243443",
},
boxShadow: {
neumorphism:
"3px 3px 10px rgba(55, 84, 170, 0.1), -3px -3px 10px #fff;",
neumorphismHover:
"inset 2px 2px 10px rgba(55, 84, 170, 0.1), inset -2px -2px 10px #fff;",
darkNeumorphism:
"3px 3px 10px rgba(0,0,0, 0.3), -3px -3px 10px rgba(96, 116, 134, 0.5);",
darkNeumorphismHover:
"inset 2px 2px 10px rgba(0,0,0, 0.3),inset -2px -2px 10px rgba(96, 116, 134, 0.5);",
},
height: {
per90: "93%",
},
},
},
variants: {
scrollbar: ["rounded"],
extend: {
boxShadow: ["dark"],
scrollbar: ["dark"],
},
},
plugins: [require("tailwind-scrollbar")],
};