From 40316ed34303dcc173f3a80d973461bb154bc725 Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Mon, 12 Mar 2018 17:29:39 -0700 Subject: [PATCH] components: Make "sea-green" button darker. This makes it a bit darker so it is a bit more visually bold than it was before. --- static/styles/app_components.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/styles/app_components.css b/static/styles/app_components.css index 3a6badf619..fe24e73c6e 100644 --- a/static/styles/app_components.css +++ b/static/styles/app_components.css @@ -105,8 +105,8 @@ } .new-style .button.sea-green { - color: hsl(156, 39%, 54%); - border-color: hsl(156, 39%, 77%); + color: hsl(156, 41%, 40%); + border-color: hsl(156, 28%, 70%); } .new-style .button.btn-warning { @@ -131,11 +131,11 @@ } .new-style .button.sea-green:hover { - border-color: hsl(156, 30%, 55%); + border-color: hsl(156, 30%, 50%); } .new-style .button.sea-green:active { - border-color: hsl(156, 30%, 55%); + border-color: hsl(156, 30%, 40%); color: hsl(156, 44%, 43%); background-color: hsl(154, 33%, 96%); }