Skip to content

Commit 8f8fb40

Browse files
authored
Merge pull request #105 from yrjarv/remove-halloween-theme
Remove temporary Halloween theme
2 parents aeab88b + 186b4fc commit 8f8fb40

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/components/Login/LoginButton.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { Person } from "@mui/icons-material";
2121
import { cybTheme } from "../themeCYB";
2222
import { useRouter } from "next/navigation";
2323

24-
import { mdiGhost } from '@mdi/js';
24+
import { mdiPenguin } from '@mdi/js';
2525
import Icon from "@mdi/react";
2626
import Link from "next/link";
2727
// import { useEffect, useState } from "react";
@@ -76,7 +76,7 @@ export default function LoginButton(props) {
7676
{session.status == "authenticated" ? (
7777
<Icon
7878
alt="Image of user"
79-
path={mdiGhost}
79+
path={mdiPenguin}
8080
color={cybTheme.palette.background.main}
8181
/>
8282
) : (
@@ -124,7 +124,7 @@ export default function LoginButton(props) {
124124
{session.status == "authenticated" ? (
125125
<Avatar alt="Image of user" sx={{ ...avatarProps }}>
126126
<Icon
127-
path={mdiGhost}
127+
path={mdiPenguin}
128128
color={cybTheme.palette.background.main}
129129
/>
130130
</Avatar>

app/components/themeCYB.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const cybTheme = createTheme({
55
palette: {
66
mode: "dark",
77
primary: {
8-
main: "#E66C2C",
8+
main: "#d2a30e",
99
},
1010
secondary: {
1111
main: "#ac0bce",

0 commit comments

Comments
 (0)