Skip to content

Commit

Permalink
Merge pull request #31 from ApprenticeofEnder/colour_update
Browse files Browse the repository at this point in the history
switch colours to use primary and accent colours better
  • Loading branch information
ApprenticeofEnder authored Oct 18, 2023
2 parents 80b20a8 + 8d7d1de commit 09100eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ a {
}

h1 {
@apply font-heading font-bold text-center text-2xl md:text-4xl text-text drop-shadow-glow;
@apply font-heading font-bold text-center text-2xl md:text-4xl text-primary-500 drop-shadow-glow;
margin-bottom: 0.5rem;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Link.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
{href}
target="_blank"
rel="noopener noreferrer"
class="{standOut ? 'text-accent-400' : 'text-text'} hover:animate-pulse italic"><slot /></a
class="{standOut ? 'text-accent-200' : 'text-text'} hover:animate-pulse italic"><slot /></a
>
2 changes: 1 addition & 1 deletion src/routes/home/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
export let projects: Project[];
export let contacts: Contact[];
let logoPhoto: string = "logo_v2.png";
let logoPhoto: string = "logo.png";
</script>

<svelte:head>
Expand Down

0 comments on commit 09100eb

Please sign in to comment.