Skip to content

Commit

Permalink
Merge pull request #75 from Borgarsy/feature-halloween-theme
Browse files Browse the repository at this point in the history
Temporary Halloween theme
  • Loading branch information
EricSvebakk authored Oct 17, 2024
2 parents d26bd3f + d198b94 commit f0bacbb
Show file tree
Hide file tree
Showing 3 changed files with 1,440 additions and 242 deletions.
6 changes: 3 additions & 3 deletions app/components/Login/LoginButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Person } from "@mui/icons-material";
import { cybTheme } from "../themeCYB";
import { useRouter } from "next/navigation";

import { mdiPenguin } from '@mdi/js';
import { mdiGhost } from '@mdi/js';
import Icon from "@mdi/react";
import Link from "next/link";
// import { useEffect, useState } from "react";
Expand Down Expand Up @@ -76,7 +76,7 @@ export default function LoginButton(props) {
{session.status == "authenticated" ? (
<Icon
alt="Image of user"
path={mdiPenguin}
path={mdiGhost}
color={cybTheme.palette.background.main}
/>
) : (
Expand Down Expand Up @@ -124,7 +124,7 @@ export default function LoginButton(props) {
{session.status == "authenticated" ? (
<Avatar alt="Image of user" sx={{ ...avatarProps }}>
<Icon
path={mdiPenguin}
path={mdiGhost}
color={cybTheme.palette.background.main}
/>
</Avatar>
Expand Down
2 changes: 1 addition & 1 deletion app/components/themeCYB.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const cybTheme = createTheme({
palette: {
mode: "dark",
primary: {
main: "#d2a30e",
main: "#E66C2C",
},
secondary: {
main: "#ac0bce",
Expand Down
Loading

0 comments on commit f0bacbb

Please sign in to comment.