-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (41 loc) · 1007 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
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
// Configure your color palette here
background: "#03071e",
light_background: "#003049",
slate: "#64748b",
cyan: "#2A9D8F",
yellow: "#E9C46A",
orange: "#E76F51",
highlight: "#3d5a80",
white: "#fff8f0",
highlight_white: "#ffffff",
black: "#0a0908",
blue: "#3d5a80",
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".no-scrollbar": {
/* IE and Edge */
"-ms-overflow-style": "none",
/* Firefox */
"scrollbar-width": "none",
/* Safari and Chrome */
"&::-webkit-scrollbar": {
display: "none",
},
},
});
}),
],
};