mirror of
https://github.com/Retropex/raspiblitz-web.git
synced 2025-05-28 04:42:32 +02:00

* feat: update to heroui * test(sendModal): fix test after heroui update * fix(button): heroui deprecation warning * test(appStatusItem): adjust test to fix tsc linting
25 lines
486 B
JavaScript
25 lines
486 B
JavaScript
import { heroui } from "@heroui/react";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export const content = [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
"./public/index.html",
|
|
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
];
|
|
|
|
export const plugins = [
|
|
heroui({
|
|
addCommonColors: true,
|
|
themes: {
|
|
light: {},
|
|
dark: {
|
|
colors: {
|
|
primary: "#4785FF",
|
|
secondary: "#BBC6DC",
|
|
tertiary: "#253553",
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
];
|