-
Notifications
You must be signed in to change notification settings - Fork 73
/
tailwind.config.mjs
53 lines (52 loc) · 1.13 KB
/
tailwind.config.mjs
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
52
53
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "#167DB7",
accent: "#FE5230",
"ij-black": "#212121",
"ij-red": "#FF421C",
"ij-green": "#00A550",
"ij-blue": "#E8F2F8",
"ij-yellow": "#EFA500",
},
backgroundImage: {
"hero-pattern": "url(/hero-pattern.webp)",
},
borderRadius: {
"4xl": "3rem",
},
backgroundSize: {
"auto-height": "auto 100%",
},
letterSpacing: {
separated: "0.35px",
},
padding: {
15: "60px",
},
transitionDuration: {
DEFAULT: "500ms",
},
screens: {
xs: "480px",
},
},
},
plugins: [
({ addUtilities }) => {
const newUtilities = {
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
};
addUtilities(newUtilities);
},
],
};