Skip to content

Commit

Permalink
Improve readability of the open status tag in the light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio9929 committed Dec 7, 2023
1 parent 08928e4 commit cb92e0d
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,16 @@

.s-table__row--open .s-table__status {
background-color: var(--warning-color);
color: var(--base-color);
color: var(--primary-color);
font-weight: normal;
}

@media (prefers-color-scheme: dark) {
.s-table__row--open .s-table__status {
color: var(--base-color);
}
}

.s-table__row--completed .s-table__status {
background-color: var(--success-color);
color: var(--base-color);
Expand Down

0 comments on commit cb92e0d

Please sign in to comment.