43 lines
709 B
TypeScript
43 lines
709 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
colors:{
|
|
'jefesRed': '#B3121E'
|
|
},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
themes: [
|
|
"night",
|
|
{
|
|
jefes: {
|
|
primary: "#B3121E",
|
|
|
|
secondary: "#18191a",
|
|
|
|
accent: "#B3121E",
|
|
|
|
neutral: "#18191a",
|
|
|
|
"base-100": "#e7e5e4",
|
|
|
|
info: "#3abff8",
|
|
|
|
success: "#36d399",
|
|
|
|
warning: "#fbbd23",
|
|
|
|
error: "#f87272",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default config;
|