Skip to content

Commit

Permalink
Weaker even/odd row highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dunn committed Nov 10, 2023
1 parent 173de89 commit 4962c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css/barrel.css
Original file line number Diff line number Diff line change
Expand Up @@ -501,11 +501,11 @@ table {

/*This makes tables easier to read by coloring alternate rows differently.*/
table tr:nth-child(odd) td {
background-color: color-mix(in srgb, var(--highlight-color) 3%, transparent);
background-color: color-mix(in srgb, var(--highlight-color) 2%, transparent);
}

table tr:nth-child(even) td {
background-color: color-mix(in srgb, var(--accent-color) 3%, transparent);
background-color: color-mix(in srgb, var(--accent-color) 2%, transparent);
}

table {
Expand Down

0 comments on commit 4962c7a

Please sign in to comment.