From 86fbe67ec9790e66ac09e1a812705348cc34740e Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Fri, 27 Mar 2015 20:32:39 +0700 Subject: [PATCH] Downcase colors --- app/css/charts.css | 20 ++++++++++---------- app/css/logo.css | 2 +- app/js/colors.js | 30 +++++++++++++++--------------- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/app/css/charts.css b/app/css/charts.css index 9f141f8..793d39d 100644 --- a/app/css/charts.css +++ b/app/css/charts.css @@ -54,16 +54,16 @@ opacity: 0.3; } -.sac.item-0 .path-0 { fill: #EA8369; } -.sac.item-1 .path-1 { fill: #FCCD67; } -.sac.item-2 .path-2 { fill: #B5A9F2; } -.sac.item-3 .path-3 { fill: #9DD7F2; } -.sac.item-4 .path-4 { fill: #FFA3A4; } -.sac.item-5 .path-5 { fill: #A8EAA8; } -.sac.item-6 .path-6 { fill: #F9D08B; } -.sac.item-7 .path-7 { fill: #6CCECB; } -.sac.item-8 .path-8 { fill: #F9E559; } -.sac.item-9 .path-9 { fill: #FFBAD2; } +.sac.item-0 .path-0 { fill: #ea8369; } +.sac.item-1 .path-1 { fill: #fccd67; } +.sac.item-2 .path-2 { fill: #b5a9f2; } +.sac.item-3 .path-3 { fill: #9dd7f2; } +.sac.item-4 .path-4 { fill: #ffa3a4; } +.sac.item-5 .path-5 { fill: #a8eaa8; } +.sac.item-6 .path-6 { fill: #f9d08b; } +.sac.item-7 .path-7 { fill: #6ccecb; } +.sac.item-8 .path-8 { fill: #f9e559; } +.sac.item-9 .path-9 { fill: #ffbad2; } .sac.item-0 .dot-0 { display: inline; } .sac.item-1 .dot-1 { display: inline; } .sac.item-2 .dot-2 { display: inline; } diff --git a/app/css/logo.css b/app/css/logo.css index 4585e37..69faf8f 100644 --- a/app/css/logo.css +++ b/app/css/logo.css @@ -17,7 +17,7 @@ /* Colors */ .logo.e { - background-color: #FCCD67; + background-color: #fccd67; } .logo.m, .logo.p { background-color: #f39d41; diff --git a/app/js/colors.js b/app/js/colors.js index 80b37ac..fdd3b6e 100644 --- a/app/js/colors.js +++ b/app/js/colors.js @@ -1,17 +1,17 @@ var Colors = [ - "#EA8369", - "#FCCD67", - "#B5A9F2", - "#9DD7F2", - "#FFA3A4", - "#A8EAA8", - "#F9D08B", - "#6CCECB", - "#F9E559", - "#FFBAD2", - "#C8CFB4", - "#C8CFB4", - "#C8CFB4", - "#C8CFB4", - "#C8CFB4" + "#ea8369", + "#fccd67", + "#b5a9f2", + "#9dd7f2", + "#ffa3a4", + "#a8eaa8", + "#f9d08b", + "#6ccecb", + "#f9e559", + "#ffbad2", + "#c8cfb4", + "#c8cfb4", + "#c8cfb4", + "#c8cfb4", + "#c8cfb4" ];