mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 00:30:02 +00:00
Move package "de.grimsi.gameyfin" to "org.gameyfin"
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import {Config} from "tailwindcss/types/config";
|
||||
import {heroui} from "@heroui/react";
|
||||
import {HeroUIConfig} from "./heroui";
|
||||
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/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
'gf-primary': '#2332c8',
|
||||
'gf-secondary': '#6441a5'
|
||||
},
|
||||
gridTemplateColumns: {
|
||||
'300px': 'repeat(auto-fit, 300px)',
|
||||
'auto-fill': 'repeat(auto-fill, minmax(150px, 1fr))',
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
heroui(HeroUIConfig)
|
||||
],
|
||||
} satisfies Config);
|
||||
Reference in New Issue
Block a user