From fa3808fa867a7c7e3355781b2224f0b1c5aafd0d Mon Sep 17 00:00:00 2001 From: vikasrohit Date: Mon, 26 Oct 2015 17:15:43 -0700 Subject: [PATCH] SUP-2160, Displayed color for Handle/Rating should be yellow SUP-2250, Grey color for handle should be more darker than current one. -- Made quick fix by updating both color and darker color in all concerned files. It needs refactoring which may take more than half of a day. --- .../distribution-graph.directive.js | 12 ++++++------ .../history-graph/history-graph.directive.js | 12 ++++++------ app/filters/rating-color.filter.js | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/app/directives/distribution-graph/distribution-graph.directive.js b/app/directives/distribution-graph/distribution-graph.directive.js index dcf673e31..2c445943d 100644 --- a/app/directives/distribution-graph/distribution-graph.directive.js +++ b/app/directives/distribution-graph/distribution-graph.directive.js @@ -23,35 +23,35 @@ // grey { 'color': '#9D9FA0', - 'darkerColor': '#848687', + 'darkerColor': '#9D9FA0', 'start': 0, 'end': 899 }, // green { 'color': '#69C329', - 'darkerColor': '#50AA10', + 'darkerColor': '#69C329', 'start': 900, 'end': 1199 }, // blue { 'color': '#616BD5', - 'darkerColor': '#4852BC', + 'darkerColor': '#616BD5', 'start': 1200, 'end': 1499 }, // yellow { - 'color': '#FCB816', - 'darkerColor': '#E39F00', + 'color': '#FCD617', + 'darkerColor': '#FCD617', 'start': 1500, 'end': 2199 }, // red { 'color': '#EF3A3A', - 'darkerColor': '#D62121', + 'darkerColor': '#EF3A3A', 'start': 2200, 'end': Infinity } diff --git a/app/directives/history-graph/history-graph.directive.js b/app/directives/history-graph/history-graph.directive.js index 34303d747..6b5aac298 100644 --- a/app/directives/history-graph/history-graph.directive.js +++ b/app/directives/history-graph/history-graph.directive.js @@ -21,35 +21,35 @@ // grey { 'color': '#9D9FA0', - 'darkerColor': '#656565', + 'darkerColor': '#9D9FA0', 'start': 0, 'end': 899 }, // green { 'color': '#69C329', - 'darkerColor': '#7aa307', + 'darkerColor': '#69C329', 'start': 900, 'end': 1199 }, // blue { 'color': '#616BD5', - 'darkerColor': '#078ccb', + 'darkerColor': '#616BD5', 'start': 1200, 'end': 1499 }, // yellow { - 'color': '#FCB816', - 'darkerColor': '#c2761e', + 'color': '#FCD617', + 'darkerColor': '#FCD617', 'start': 1500, 'end': 2199 }, // red { 'color': '#EF3A3A', - 'darkerColor': '#cb0651', + 'darkerColor': '#EF3A3A', 'start': 2200, 'end': Infinity } diff --git a/app/filters/rating-color.filter.js b/app/filters/rating-color.filter.js index 2eab6ddca..7a74338e4 100644 --- a/app/filters/rating-color.filter.js +++ b/app/filters/rating-color.filter.js @@ -25,35 +25,35 @@ // grey { 'color': '#9D9FA0', - 'darkerColor': '#656565', + 'darkerColor': '#9D9FA0', 'start': 1, 'end': 899 }, // green { 'color': '#69C329', - 'darkerColor': '#7aa307', + 'darkerColor': '#69C329', 'start': 900, 'end': 1199 }, // blue { 'color': '#616BD5', - 'darkerColor': '#078ccb', + 'darkerColor': '#616BD5', 'start': 1200, 'end': 1499 }, // yellow { - 'color': '#FCB816', - 'darkerColor': '#c2761e', + 'color': '#FCD617', + 'darkerColor': '#FCD617', 'start': 1500, 'end': 2199 }, // red { 'color': '#EF3A3A', - 'darkerColor': '#cb0651', + 'darkerColor': '#EF3A3A', 'start': 2200, 'end': Infinity }