mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
21 lines
480 B
JavaScript
21 lines
480 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: "hsl(var(--background))",
|
|
foreground: "hsl(var(--foreground))",
|
|
btn: {
|
|
background: "hsl(var(--btn-background))",
|
|
"background-hover": "hsl(var(--btn-background-hover))",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|