mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import { createTheme } from "@mantine/core";
|
|
|
|
import { primaryColor } from "./theme/colors/primary";
|
|
import { secondaryColor } from "./theme/colors/secondary";
|
|
|
|
export const theme = createTheme({
|
|
colors: {
|
|
primaryColor,
|
|
secondaryColor,
|
|
},
|
|
primaryColor: "primaryColor",
|
|
});
|