2023-04-09 23:28:52 +05:30
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
2024-03-25 23:48:45 +05:30
|
|
|
mode: "jit",
|
|
|
|
|
darkMode: "class",
|
|
|
|
|
content: ["./src/**/*.tsx"],
|
2025-02-07 23:49:40 +05:30
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
backgroundImage: {
|
|
|
|
|
'bottom-mask-light': 'linear-gradient(0deg, transparent 0, #ffffff 160px)',
|
|
|
|
|
'bottom-mask-dark': 'linear-gradient(0deg, transparent 0, #171717 160px)',
|
|
|
|
|
},
|
|
|
|
|
maskImage: {
|
|
|
|
|
'bottom-fade': 'linear-gradient(0deg, transparent 0, #000 160px)',
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-06-10 20:47:20 +05:30
|
|
|
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")]
|
2024-03-25 23:48:45 +05:30
|
|
|
}
|