Skip to content

Commit

Permalink
Merge pull request #52 from q1akm/q1akm-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
JollyJolli authored Oct 3, 2024
2 parents ff900e9 + c2273fc commit 0962c83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Binary file added src/dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 3 additions & 4 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,17 @@ body {
background-color: var(--bg-light);
color: var(--text-light);
line-height: 1.6;
transition: background-color 0.3s, color 0.3s;
background-image: url('bgm.png');
transition: background-color 0.3s, color 0.3s, background-image 0.3s;
background-image: url('bgm.png'); /* Background image for light mode */
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;

}


body.dark-mode {
background-color: var(--bg-dark);
color: var(--text-dark);
background-image: url('dark.png'); /* Background image for dark mode */
}

.container {
Expand Down

0 comments on commit 0962c83

Please sign in to comment.