Skip to content

Commit

Permalink
Update App.css - Add Dark Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremiahPetersen authored Apr 15, 2024
1 parent 2c20524 commit 0b64d82
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,15 @@
.copyButton:hover {
background-color: #0056b3;
}

/* Dark mode */
.dark-mode {
background-color: #333;
color: white;
}

.dark-mode .inputArea, .dark-mode .smallInputArea, .dark-mode .outputArea {
background-color: #555;
color: white;
border-color: #888;
}

0 comments on commit 0b64d82

Please sign in to comment.