mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
24 lines
661 B
TypeScript
24 lines
661 B
TypeScript
import {Config} from "tailwindcss/types/config";
|
|
import {nextui} from "@nextui-org/react";
|
|
import {NextUIConfig} from "./nextui";
|
|
import withMT from "@material-tailwind/react/utils/withMT";
|
|
|
|
export default withMT({
|
|
darkMode: "class",
|
|
content: [
|
|
'./src/main/frontend/index.html',
|
|
'./src/main/frontend/**/*.{js,ts,jsx,tsx}',
|
|
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'gf-primary': '#2332c8',
|
|
'gf-secondary': '#6441a5'
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
nextui(NextUIConfig)
|
|
],
|
|
} satisfies Config); |