Skip to content

Commit

Permalink
feat: darken dark theme background
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Aug 22, 2024
1 parent 295f9f8 commit 39e11a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const { title } = Astro.props;
<meta name="msapplication-TileColor" content="#fdfffd" />
<meta
name="theme-color"
content="#303f30"
content="#171e17"
media="(prefers-color-scheme: dark)"
/>
<meta name="theme-color" content="#fdfffd" />
Expand Down
4 changes: 2 additions & 2 deletions src/scss/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $secondary-text-color-dark: rgba(#fff, 0.7);
$disabled-text-color-dark: rgba(#fff, 0.5);
$link-text-color-dark: #42a5f5;
$link-text-color-visited-dark: #b39ddb;
$background-dark: #303f30;
$dark-background-dark: #2c2c2c;
$background-dark: #171e17;
$dark-background-dark: #1f2a1f;
$warning-color-dark: #ff7070;
$encrypt-card-background-dark: #004000;
$decrypt-card-background-dark: #560000;
Expand Down

0 comments on commit 39e11a4

Please sign in to comment.