Skip to content

Commit 5af6044

Browse files
committed
Updated tech colors
1 parent c99156f commit 5af6044

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

app/charts/memory-chart.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const MemoryChart = (props) => {
3737
{
3838
type: 'scatter',
3939
fill: 'tozeroy',
40-
fillcolor: 'blue',
40+
fillcolor: 'rgb(0, 237, 160)',
4141
mode: 'none',
4242
x: {autorange: true},
4343
y: free,
@@ -47,7 +47,7 @@ const MemoryChart = (props) => {
4747
{
4848
type: 'scatter',
4949
fill: 'tozeroy',
50-
fillcolor: 'rgba(243, 245, 250, .9)',
50+
fillcolor: 'rgba(0, 237, 160, .5)',
5151
mode: 'none',
5252
x: {autorange: true},
5353
y: used,
@@ -57,7 +57,7 @@ const MemoryChart = (props) => {
5757
{
5858
type: 'scatter',
5959
fill: 'tozeroy',
60-
fillcolor: 'rgba(74, 78, 238, .3)',
60+
fillcolor: 'rgba(74, 78, 238, .7)',
6161
mode: 'none',
6262
x: {autorange: true},
6363
y: active,

app/charts/speed-chart.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ const SpeedChart = (props) => {
3131
type: 'indicator',
3232
value: yAxis[yAxis.length - 1],
3333
title: {'text': "Speed Chart"},
34-
delta: {'reference': 3.5, 'decreasing': {'color': 'mistyrose'}},
34+
delta: {'reference': 3.5, 'decreasing': {'color': '#FA1A58'}},
3535
mode: "gauge+number+delta",
3636
gauge: { axis: { range: [null, 8] },
3737
'tickwidth': 1,
38-
'tickcolor': 'mistyrose',
39-
'bar': {'color': "#f3f5fa"},
38+
'tickcolor': '#FA1A58',
39+
'bar': {'color': '#00eda0'},
4040
'bordercolor': "#a1be95",
4141
'steps': [
42-
{'range': [0, 4], 'color': '#d09683'},
42+
{'range': [0, 4], 'color': '#fef5fa'},
4343
{'range': [4, 6], 'color': '#4a4eee'}
4444
],
4545
'threshold': {
46-
'line': {'color': 'mistyrose', 'width': 3.5},
46+
'line': {'color': '#FA1A58', 'width': 3.5},
4747
'thickness': 0.75,
4848
'value': 7.5
4949
}

app/stylesheets/graphs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
svg {
88
border-radius: 2px;
9-
/* box-shadow: 5px 5px 5px rgba(216, 210, 247, .5); */
9+
box-shadow: 2px 2px 2px rgba(216, 210, 247, .5);
1010
}

app/stylesheets/monitoring.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88

99
#microserviceHealthTitle{
10-
color: white;
10+
color: black;
1111
font-size: 38px;
1212
margin-top: 0px;
1313
font-family: 'Quicksand', sans-serif;

app/stylesheets/sidebar.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
}
4646

4747
.servicesBtn:hover {
48-
background-color: #00AFEA;
48+
background-color: #494FEE;
4949
font-weight: 400;
5050
box-shadow: #333;
5151
cursor: pointer;
@@ -107,7 +107,7 @@
107107

108108
.overviewSubmitBtn:hover {
109109
/* border: .5px solid azure; */
110-
background-color: #00AFEA;
110+
background-color: #494FEE;
111111
color: azure;
112112
cursor: pointer;
113113
}
@@ -121,7 +121,7 @@
121121
/* font-weight: 900; */
122122
cursor: pointer;
123123
/* border: 2px solid #98ba8e; */
124-
background-color: #00AFEA;
124+
background-color: #494FEE;
125125
}
126126

127127
.servicesList {

0 commit comments

Comments
 (0)