You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
blogbaster2.2/tailwind.config.js

41 lines
807 B

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/app/*.{js,ts,jsx,tsx}",
"src/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [require("daisyui")],
// daisyUI config (optional)
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "white",
},
themes: [
{
mytheme: {
"primary": "#6419E6",
"secondary": "#D926A9",
"accent": "#1FB2A6",
"neutral": "#191D24",
"base-100": "#2A303C",
"info": "#3ABFF8",
"success": "#36D399",
"warning": "#FBBD23",
"error": "#F87272",
},
},
],
}