activity.css: Replace RGB colors with HSL colors.

This commit is contained in:
Cory Lynch 2017-06-20 23:07:08 -04:00 committed by showell
parent bd9459f27d
commit 7dd0ae33ad
1 changed files with 6 additions and 6 deletions

View File

@ -9,19 +9,19 @@
}
.table-striped tr.recently_active td {
background-color: #afa;
background-color: hsl(120, 97%, 83%);
}
.table-striped tr.recently_active:nth-child(odd) td {
background-color: #9e9;
background-color: hsl(120, 70%, 76%);
}
.table-striped tr.long_inactive td {
background-color: #faa;
background-color: hsl(0, 97%, 83%);
}
.table-striped tr.long_inactive:nth-child(odd) td {
background-color: #e99;
background-color: hsl(0, 70%, 76%);
}
td.number {
@ -41,10 +41,10 @@ tr.admin td:first-child {
.good {
font-weight: bold;
color: #0a0;
color: hsl(120, 100%, 33%);
}
.bad {
font-weight: bold;
color: #c00;
color: hsl(0, 100%, 39%);
}