-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
// const autoprefixer = require("autoprefixer");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
fontFamily: { nunito: "Nunito" },
},
colors: {
gray: { 100: "#808080", 200: "#343640", 300: "#1d1e24" },
white: "#fff",
cyan: "#14ffec",
red: "#d6436e",
green: "#25da72",
fav: "#282931",
},
fontSize: {
sm: "14px",
md: "18px",
lg: "24px",
xl: "32px",
base: "16px",
},
},
plugins: [
require("tailwind-scrollbar"),
// function ({ addUtilities }) {
// const newUtilities = {
// ".scrollbar-thin": {
// scrollbarWidth: "thin",
// scrollbarColor: "rgb(31 29 29) white",
// },
// ".scrollbar-webkit": {
// "&::-webkit-scrollbar": {
// width: "0px",
// },
// "&::-webkit-scrollbar-track": {
// background: "white",
// },
// "&::-webkit-scrollbar-thumb": {
// background: "rgb(31 41 55)",
// borderRadius: "20px",
// border: "1px solid white",
// },
// },
// };
// addUtilities(newUtilities, ["responsive", "hover"]);
// },
],
};