-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (37 loc) · 895 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "420px",
sm: "600px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
shorter: { raw: "(max-height: 690px)" },
short: { raw: "(max-height: 850px)" },
},
extend: {
backgroundImage: {
blob: `url('/blob.png')`,
},
colors: {
bgmain_blue: "#0e1017",
bground_dark: "#161d24",
bground: "#282828",
bglight: "#3d3a3d",
cbase: "#2a1b3d",
lightbase: "#44318d",
highlight: "#d83f87",
neutral: "#8ea1a5",
hoverbg: "#ffffff",
gold: "#F4AB0A",
},
},
},
plugins: [require("tailwind-scrollbar"), require("tailwind-animatecss")],
};