-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (61 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}",
"./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
myYellow: "#ffc44d",
myYellowHover: "#ffb833", // Hover state for myYellow
myGreen: "#40bfbb",
myGreenHover: "#38a29f", // Hover state for myGreen
myGreenDark: "#318a87",
myGreenDarkenHover: "#297370", // Hover state for myGreenDarken
myRed: "#f65893",
myRedHover: "#e64e87", // Hover state for myRed
myBleu: "#4b9be2",
myBleuHover: "#3b88d1", // Hover state for myBleu
myOrange: "#FFB244",
myOrangeHover: "#ffa330", // Hover state for myOrange
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
animation: {
slide: "slide 35s linear infinite", // Custom slide animation
},
keyframes: {
slide: {
"0%": {
transform: "translateX(0)",
},
"100%": {
transform: "translateX(-100%)", // Moves the logos from right to left
},
},
},
},
screens: {
xs: "320px",
// => @media (min-width: 320px) { ... }
sm: "640px",
// => @media (min-width: 640px) { ... }
md: "1024px",
// => @media (min-width: 1024px) { ... }
lg: "1280px",
// => @media (min-width: 1280px) { ... }
},
},
plugins: [],
};