Skip to content

Commit

Permalink
Provide some dark mode colors
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Dec 18, 2024
1 parent 8494f31 commit b84abd9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
background-color: #f8f8f8;
}

[data-bs-theme="dark"] .selected-profile {
background-color: #070707;
}

#submit-button {
grid-column-start: 1;
grid-column-end: 3;
Expand Down Expand Up @@ -114,10 +118,22 @@
*/
color: #ddd;
}

/* react-select styling */
[data-bs-theme="dark"]
.react-select-item-container.react-select-item-menu-display.react-select-item-selected
.react-select-item-description {
color: #222222;
}

.react-select-item-container {
padding: 4px;
}

.react-select-item-description {
color: #999;
}

[data-bs-theme="dark"] .react-select-item-description {
color: #666666;
}

0 comments on commit b84abd9

Please sign in to comment.