97 lines
2.7 KiB
JavaScript
Executable File
97 lines
2.7 KiB
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"../../../**/*.{razor,html,cshtml}",
|
|
// "./src/**/*.{razor,html,cshtml}",
|
|
// "./Components/*.{razor,html,cshtml}",
|
|
// "./Components/**/*.{razor,html,cshtml}",
|
|
|
|
"../../../Pages/**/*.{razor,html,cshtml}",
|
|
"../../../Components/Pages/**/*.{razor,html,cshtml}",
|
|
"../../../Libs/**/*.{razor,html,cshtml}",
|
|
|
|
"../../../Libs/**/*.{razor,html,cshtml}",
|
|
"./wwwroot/*.html",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
c1: "#E2E8F0",
|
|
c2: "#94A3B8",
|
|
c3: "#37918C",
|
|
c4: "#A4ADD4",
|
|
c5: "#818CF8",
|
|
|
|
c6: "#303A4D",
|
|
c7: "#0F172A",
|
|
c8: "#BDB068",
|
|
c9: "#012C63",
|
|
c10: "#E9B135",
|
|
},
|
|
// Some useful comment
|
|
fontFamily: {
|
|
nunito: ["nunito", "sans-serif"],
|
|
qatar: ["qatar", "serif"], // Ensure fonts with spaces have " " surrounding it.
|
|
qatarbold: ["qatarbold", "serif"], // Ensure fonts with spaces have " " surrounding it.
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
test: {
|
|
primary: "#4ECEDA",
|
|
secondary: "#44B4BE",
|
|
accent: "#E9B135",
|
|
neutral: "#27666C",
|
|
"base-100": "#ffffff",
|
|
info: "#fde047",
|
|
success: "#15803d",
|
|
warning: "#b91c1c",
|
|
error: "#ffffff",
|
|
},
|
|
},
|
|
"dark",
|
|
"cupcake",
|
|
"bumblebee",
|
|
"emerald",
|
|
"corporate",
|
|
"synthwave",
|
|
"retro",
|
|
"cyberpunk",
|
|
"valentine",
|
|
"halloween",
|
|
"garden",
|
|
"forest",
|
|
"aqua",
|
|
"lofi",
|
|
"pastel",
|
|
"fantasy",
|
|
"wireframe",
|
|
"black",
|
|
"luxury",
|
|
"dracula",
|
|
"cmyk",
|
|
"autumn",
|
|
"business",
|
|
"acid",
|
|
"lemonade",
|
|
"night",
|
|
"coffee",
|
|
"winter",
|
|
"dim",
|
|
"nord",
|
|
"sunset",
|
|
], // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
|
|
darkTheme: "cupcake", // name of one of the included themes for dark mode
|
|
base: true, // applies background color and foreground color for root element by default
|
|
styled: true, // include daisyUI colors and design decisions for all components
|
|
utils: true, // adds responsive and modifier utility classes
|
|
prefix: "", // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
|
|
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
|
|
themeRoot: ":root", // The element that receives theme color CSS variables
|
|
},
|
|
};
|