diff --git a/dav_base/static/dav_base/css/local.css b/dav_base/static/dav_base/css/local.css index b7362e3..90b1278 100644 --- a/dav_base/static/dav_base/css/local.css +++ b/dav_base/static/dav_base/css/local.css @@ -150,23 +150,51 @@ thead input { } /* - * We need more label colors + * We need more text colors (for event stati) + */ +.text-dav-purple { + color: #866dac; +} +.text-dav-lime { + color: #859201; +} +.text-dav-cyan { + color: #54bbd9; +} +.text-dav-caramel { + color: #9c5b22; +} +.text-dav-mandarin { + color: #b43a12; +} + +/* + * We need more label colors (for event stati) */ .label-black { background-color: #333; } -.label-dav-brown { - background-color: #925f36; -} .label-dav-purple { background-color: #a694c2; } +.label-dav-lime { + background-color: #bccf07; +} .label-dav-cyan { background-color: #86cfe4; } +.label-dav-caramel { + background-color: #ce792d; +} +.label-dav-mandarin { + background-color: #e84e1b; +} +.label-dav-brown { + background-color: #925f36; +} /* - * We need more button colors + * We need more button colors (for event stati) */ .btn-black { background-color: #333; @@ -177,4 +205,54 @@ thead input { background-color: #555; border-color: #ccc; color: #fff; -} \ No newline at end of file +} +.btn-dav-purple { + background-color: #a694c2; + border-color: #8067a8; + color: #fff; +} +.btn-dav-purple.focus, .btn-dav-purple:focus, .btn-dav-purple:hover { + background-color: #866dac; + border-color: #8067a8; + color: #fff; +} +.btn-dav-lime { + background-color: #bccf07; + border-color: #7c8801; + color: #fff; +} +.btn-dav-lime.focus, .btn-dav-lime:focus, .btn-dav-lime:hover { + background-color: #859201; + border-color: #7c8801; + color: #fff; +} +.btn-dav-cyan { + background-color: #86cfe4; + border-color: #4cb8d7; + color: #fff; +} +.btn-dav-cyan.focus, .btn-dav-cyan:focus, .btn-dav-cyan:hover { + background-color: #54bbd9; + border-color: #4cb8d7; + color: #fff; +} +.btn-dav-caramel { + background-color: #ce792d; + border-color: #935720; + color: #fff; +} +.btn-dav-caramel.focus, .btn-dav-caramel:focus, .btn-dav-caramel:hover { + background-color: #9c5b22; + border-color: #935720; + color: #fff; +} +.btn-dav-mandarin { + background-color: #e84e1b; + border-color: #aa3711; + color: #fff; +} +.btn-dav-mandarin.focus, .btn-dav-mandarin:focus, .btn-dav-mandarin:hover { + background-color: #b43a12; + border-color: #aa3711; + color: #fff; +}