raspiblitz-web/tailwind.config.js
escapedcat 4540f87d02
Chore/deps heroui (#819)
* feat: update to heroui

* test(sendModal): fix test after heroui update

* fix(button): heroui deprecation warning

* test(appStatusItem): adjust test to fix tsc linting
2025-02-14 21:13:50 +01:00

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",
},
},
},
}),
];