Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit fa3808f

Browse files
author
vikasrohit
committed
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.
1 parent bacc0dd commit fa3808f

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

app/directives/distribution-graph/distribution-graph.directive.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,35 @@
2323
// grey
2424
{
2525
'color': '#9D9FA0',
26-
'darkerColor': '#848687',
26+
'darkerColor': '#9D9FA0',
2727
'start': 0,
2828
'end': 899
2929
},
3030
// green
3131
{
3232
'color': '#69C329',
33-
'darkerColor': '#50AA10',
33+
'darkerColor': '#69C329',
3434
'start': 900,
3535
'end': 1199
3636
},
3737
// blue
3838
{
3939
'color': '#616BD5',
40-
'darkerColor': '#4852BC',
40+
'darkerColor': '#616BD5',
4141
'start': 1200,
4242
'end': 1499
4343
},
4444
// yellow
4545
{
46-
'color': '#FCB816',
47-
'darkerColor': '#E39F00',
46+
'color': '#FCD617',
47+
'darkerColor': '#FCD617',
4848
'start': 1500,
4949
'end': 2199
5050
},
5151
// red
5252
{
5353
'color': '#EF3A3A',
54-
'darkerColor': '#D62121',
54+
'darkerColor': '#EF3A3A',
5555
'start': 2200,
5656
'end': Infinity
5757
}

app/directives/history-graph/history-graph.directive.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,35 @@
2121
// grey
2222
{
2323
'color': '#9D9FA0',
24-
'darkerColor': '#656565',
24+
'darkerColor': '#9D9FA0',
2525
'start': 0,
2626
'end': 899
2727
},
2828
// green
2929
{
3030
'color': '#69C329',
31-
'darkerColor': '#7aa307',
31+
'darkerColor': '#69C329',
3232
'start': 900,
3333
'end': 1199
3434
},
3535
// blue
3636
{
3737
'color': '#616BD5',
38-
'darkerColor': '#078ccb',
38+
'darkerColor': '#616BD5',
3939
'start': 1200,
4040
'end': 1499
4141
},
4242
// yellow
4343
{
44-
'color': '#FCB816',
45-
'darkerColor': '#c2761e',
44+
'color': '#FCD617',
45+
'darkerColor': '#FCD617',
4646
'start': 1500,
4747
'end': 2199
4848
},
4949
// red
5050
{
5151
'color': '#EF3A3A',
52-
'darkerColor': '#cb0651',
52+
'darkerColor': '#EF3A3A',
5353
'start': 2200,
5454
'end': Infinity
5555
}

app/filters/rating-color.filter.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,35 +25,35 @@
2525
// grey
2626
{
2727
'color': '#9D9FA0',
28-
'darkerColor': '#656565',
28+
'darkerColor': '#9D9FA0',
2929
'start': 1,
3030
'end': 899
3131
},
3232
// green
3333
{
3434
'color': '#69C329',
35-
'darkerColor': '#7aa307',
35+
'darkerColor': '#69C329',
3636
'start': 900,
3737
'end': 1199
3838
},
3939
// blue
4040
{
4141
'color': '#616BD5',
42-
'darkerColor': '#078ccb',
42+
'darkerColor': '#616BD5',
4343
'start': 1200,
4444
'end': 1499
4545
},
4646
// yellow
4747
{
48-
'color': '#FCB816',
49-
'darkerColor': '#c2761e',
48+
'color': '#FCD617',
49+
'darkerColor': '#FCD617',
5050
'start': 1500,
5151
'end': 2199
5252
},
5353
// red
5454
{
5555
'color': '#EF3A3A',
56-
'darkerColor': '#cb0651',
56+
'darkerColor': '#EF3A3A',
5757
'start': 2200,
5858
'end': Infinity
5959
}

0 commit comments

Comments
 (0)