oont-contents/plugins/webappick-product-feed-for-woocommerce/tailwind.config.js
2025-03-31 21:42:48 +02:00

19 lines
452 B
JavaScript

/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: ["./V5/src/**/*.{html,js, jsx,ts}"],
prefix: "ctx-",
theme: {
extend: {
colors: {
themeColor: "linear-gradient(125deg, #3cb0fd 0, #6c5ce7 140%)",
themeHoverColor: "#3cb0fd !important",
},
screens: {
"2.5xl": "1830px",
"3xl": "2200px",
},
},
},
plugins: [],
};