Skip to content

Commit

Permalink
Added gradient bg, modified favicon and PageLogo
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaeling committed Oct 25, 2023
1 parent 6653e4d commit d94638b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function RootLayout({
}) {
return (
<html lang='en' className={`${sans.variable} ${mono.variable}`}>
<body className={'overflow-x-hidden bg-darkest text-lightest font-body w-screen'}>
<body className={'overflow-x-hidden text-lightest font-body w-screen'}>
{children}
</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion src/components/root/PageLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function PageLogo({
<div className={`${className}`}>
<FadeIn order={-1}>
<Link href='/'>
<Logo className={'transition text-dark hover:text-light max-h-16 w-16'}/>
<Logo className={'transition text-light hover:text-lighter max-h-16 w-16'}/>
</Link>
</FadeIn>
</div>
Expand Down
6 changes: 6 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@
:root {
color-scheme: dark;
}

html {
background: theme(colors.darkest);
background: radial-gradient(circle at 10% 35%, #2F380C 0%, theme(colors.darkest) 30%);
background-attachment: fixed;
}

0 comments on commit d94638b

Please sign in to comment.