From 7dd0ae33adb2647af43caf476cbc0173042c9569 Mon Sep 17 00:00:00 2001 From: Cory Lynch Date: Tue, 20 Jun 2017 23:07:08 -0400 Subject: [PATCH] activity.css: Replace RGB colors with HSL colors. --- static/styles/activity.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/styles/activity.css b/static/styles/activity.css index e189c066b4..57de8d8726 100644 --- a/static/styles/activity.css +++ b/static/styles/activity.css @@ -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%); }