mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-10 16:07:57 -06:00
feat: setup 'web' frontend
This commit is contained in:
29
web/layouts/theme.ts
Normal file
29
web/layouts/theme.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import type { MantineThemeOverride } from "@mantine/core";
|
||||
import { createTheme } from "@mantine/core";
|
||||
|
||||
const theme: MantineThemeOverride = createTheme({
|
||||
/** Put your mantine theme override here */
|
||||
primaryColor: "yellow",
|
||||
|
||||
fontFamily: "'Nunito', sans-serif",
|
||||
headings: {
|
||||
fontFamily: "'Nunito', sans-serif",
|
||||
fontWeight: "800",
|
||||
},
|
||||
components: {
|
||||
AppShell: {
|
||||
styles: {
|
||||
header: {
|
||||
backgroundColor: "#000",
|
||||
borderBottom: "1px solid rgba(250, 204, 21, 0.25)",
|
||||
},
|
||||
navbar: {
|
||||
backgroundColor: "#000",
|
||||
borderRight: "1px solid rgba(250, 204, 21, 0.25)",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export default theme;
|
||||
Reference in New Issue
Block a user