mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 00:30:02 +00:00
Start theming implementation
This commit is contained in:
+16
-11
@@ -1,15 +1,20 @@
|
||||
import withMT from "@material-tailwind/react/utils/withMT";
|
||||
import {withMaterialColors} from "tailwind-material-colors";
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default withMT({
|
||||
content: ["./frontend/index.html", "./frontend/**/*.{js,ts,jsx,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
'gf-primary': '#2332c8',
|
||||
'gf-secondary': '#6441a5'
|
||||
},
|
||||
export default withMaterialColors(withMT({
|
||||
content: ["./frontend/index.html", "./frontend/**/*.{js,ts,jsx,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
'gf-primary': '#2332c8',
|
||||
'gf-secondary': '#6441a5'
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
});
|
||||
plugins: [],
|
||||
}),
|
||||
{
|
||||
primary: "#2332c8"
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user