-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 1.06 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} */
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx,html}", // Adjust this glob pattern to match your project file structure
// "./path/to/other/directories/if/any/**/*.html", // Include any other directories where you use Tailwind classes
],
theme: {
extend: {
scrollBehavior: ["smooth"],
colors: {
brown: "#1E3A2B",
deepblue: "#1D0F74",
bgblue: "#231676",
footerblue: "#130955",
lightdeepblue: "#1D0F7424",
},
minWidth: {
1024: "1024px",
},
animation: {
"scroll-left": "scroll-left 60s linear infinite",
"scroll-right": "scroll-right 60s linear infinite",
},
keyframes: {
"scroll-left": {
"0%": { transform: "translateX(30%)" },
"100%": { transform: "translateX(-30%)" },
},
"scroll-right": {
"0%": { transform: "translateX(-30%)" },
"100%": { transform: "translateX(30%)" },
},
},
},
},
variants: {},
plugins: [],
};