mirror of
https://github.com/arkorty/Reduce.git
synced 2026-03-18 08:52:27 +00:00
17 lines
459 B
JavaScript
17 lines
459 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export const content = [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
];
|
|
export const theme = {
|
|
extend: {
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
},
|
|
},
|
|
};
|
|
export const plugins = [];
|