-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
39 lines (38 loc) · 1.11 KB
/
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
backgroundImage: {
gradienthero:
"linear-gradient(40deg, #5c1324 0%, #111827 0%, #111827 30%, #5c1324 100%);",
gradientcorner:
"linear-gradient(20deg, #111827 32%, #111827 68%, #9a203c 100%);",
gradientedge:
"linear-gradient(40deg, #9a203c 0%, #111827 0%, #111827 90%, #9a203c 100%);",
gradientpage:
"linear-gradient(14deg, #9a203c 0%, #111827 20%, #111827 80%, #9a203c 100%);",
gradientmix:
"linear-gradient(90deg, #f0357c, #f154ff, #777dff, #497ce2, #37bdde);",
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
});
}),
],
};