diff --git a/src/app/view/home/graph-list/graph-list.component.ts b/src/app/view/home/graph-list/graph-list.component.ts
index 0cb3242..0eada8c 100644
--- a/src/app/view/home/graph-list/graph-list.component.ts
+++ b/src/app/view/home/graph-list/graph-list.component.ts
@@ -441,7 +441,7 @@ export class GraphListComponent implements OnInit {
// mode: 'lines+markers',
type: 'scatter',
name: 'Cuckoo',
- // line: { color: '#ac3333' },
+ line: { color: '#bf9b30' },
//hovertemplate: '%{text}
Cuckoo : %{y:,}',
hovertemplate: 'Cuckoo : %{y:,}',
hoverlabel: {namelength : 0}
@@ -455,7 +455,7 @@ export class GraphListComponent implements OnInit {
type: 'scatter',
name: 'Progpow',
yaxis: 'y2',
- // line: { color: '#ac3333' },
+ line: { color: '#e2e2e2' },
hovertemplate: 'Progpow : %{y:,}',
hoverlabel: {namelength : 0}
},
@@ -467,7 +467,7 @@ export class GraphListComponent implements OnInit {
type: 'scatter',
name: 'RandomX',
yaxis: 'y3',
- // line: { color: '#ac3333' },
+ line: { color: '#222223' },
hovertemplate: 'RandomX : %{y:,}',
hoverlabel: {namelength : 0}
},
@@ -484,7 +484,7 @@ export class GraphListComponent implements OnInit {
mode: 'lines+markers',
type: 'scatter',
name: '',
- line: { color: '#ac3333' },
+ line: { color: '#222223' },
hovertemplate: '%{text}
Difficulty : %{y:,}',
}];
break;
@@ -676,7 +676,7 @@ export class GraphListComponent implements OnInit {
hovertemplate: '%{x}
Cuckoo : %{text:,}',
hoverlabel: {namelength : 0},
marker: {
- color: '#77817C',
+ color: '#bf9b30',
},
},
// {
@@ -699,7 +699,7 @@ export class GraphListComponent implements OnInit {
hovertemplate: '%{x}
ProgPow : %{text:,}',
hoverlabel: {namelength : 0},
marker: {
- color: '#825f5f',
+ color: '#222223',
},
},
{
@@ -711,7 +711,7 @@ export class GraphListComponent implements OnInit {
hovertemplate: '%{x}
RandomX : %{text:,}',
hoverlabel: {namelength : 0},
marker: {
- color: '#a9df5f',
+ color: '#e2e2e2',
},
}
@@ -764,7 +764,7 @@ export class GraphListComponent implements OnInit {
],
layout: {
hovermode: 'closest',
- //width: 350,
+ width: 350,
height: 250,
autosize: false,
showlegend: false,
@@ -803,7 +803,7 @@ export class GraphListComponent implements OnInit {
hovertemplate: 'Block #%{x}
Interval : %{text:,}s',
type: 'bar',
marker: {
- color: Blockval,
+ color: '#bf9b30',
colorscale: 'Viridis',
},
},
@@ -857,7 +857,7 @@ export class GraphListComponent implements OnInit {
hovertemplate: '%{x}
Block : %{text:,}',
type: 'bar',
marker: {
- color: Blockval,
+ color: "#bf9b30",
colorscale: 'Viridis',
},
},
@@ -901,6 +901,9 @@ export class GraphListComponent implements OnInit {
name: '',
hovertemplate: '%{x}
Fee : %{text:,}',
type: 'lines',
+ line: {
+ color: '#bf9b30',
+ },
},
],
layout: {
@@ -937,11 +940,13 @@ export class GraphListComponent implements OnInit {
{
x: gDate,
y: gaddedreward,
- type: 'scatter',
- mode: 'lines',
+ // type: 'scatter',
+ // mode: 'lines',
+ //fill: 'tozeroy',
+ type: 'line',
name: '',
line: {
- color: '#17BECF',
+ color: '#bf9b30',
width: 3,
},
text: gReward,
@@ -994,7 +999,7 @@ export class GraphListComponent implements OnInit {
fill: 'tozeroy',
type: 'line',
line: {
- color: 'rgb(100, 0, 160)',
+ color: '#bf9b30',
},
},
],
@@ -1040,7 +1045,7 @@ export class GraphListComponent implements OnInit {
fill: 'tozeroy',
type: 'line',
line: {
- color: '#f5ca19',
+ color: '#bf9b30',
},
},
// {
@@ -1065,7 +1070,7 @@ export class GraphListComponent implements OnInit {
type: 'line',
name: 'RandomX',
line: {
- color: '#1ad5e9',
+ color: '#e2e2e2',
},
},
{
@@ -1078,7 +1083,7 @@ export class GraphListComponent implements OnInit {
type: 'line',
name: 'ProgPow',
line: {
- color: '#f74f4f',
+ color: '#222223',
},
},
],
@@ -1125,6 +1130,7 @@ export class GraphListComponent implements OnInit {
text: hovertext,
hovertemplate: hovertext + ': %{z:,} ',
colorscale: 'Rainbow',
+ //colors : colorRamp(c("red", "green")),
type: 'heatmap',
visible: true,
colorbar: { thickness: 3 },
@@ -1186,7 +1192,7 @@ export class GraphListComponent implements OnInit {
text: Ttotalinput,
hovertemplate: 'Total Input : %{text:,} ',
hoverlabel: {namelength : 0},
- line: { color: '#6ebe58' },
+ line: { color: '#bf9b30' },
},
{
type: 'scatter',
@@ -1197,7 +1203,7 @@ export class GraphListComponent implements OnInit {
text: Ttotalkernal,
hovertemplate: 'Total Kernel : %{text:,} ',
hoverlabel: {namelength : 0},
- line: { color: '#f57979' },
+ line: { color: '#e2e2e2' },
},
{
type: 'scatter',
@@ -1208,7 +1214,7 @@ export class GraphListComponent implements OnInit {
text: Ttotaloutput,
hovertemplate: 'Total Output : %{text:,} ',
hoverlabel: {namelength : 0},
- line: { color: '#f7d340' },
+ line: { color: '#222223' },
},
],
layout: {
diff --git a/src/assets/css/style.css b/src/assets/css/style.css
index 28eb628..d4ab43f 100644
--- a/src/assets/css/style.css
+++ b/src/assets/css/style.css
@@ -268,9 +268,10 @@ a:focus {
}
.day_filter a.active {
border: 1px solid #BF9B30;
- background: #BF9B30;
+ /* background: #BF9B30; */
padding: 0 5px;
- color: #f3f4f2
+ /* color: #f3f4f2 */
+ color: #BF9B30
}
.difficulty_filter.day_filter a.active{border-color: #0056b3; color: #0056b3;}
.explore_all {
@@ -600,9 +601,10 @@ body.dark_theme {
color: #c0d2ff;
}
.dark_theme .day_filter a.active {
- background-color: #BF9B30;
+ /* background-color: #BF9B30; */
border-color: #BF9B30;
- color: #f3f4f2;
+ /* color: #f3f4f2; */
+ color: #BF9B30;
}
.dark_theme .chart_heading {
color: #f3f4f2;
diff --git a/src/assets/img/favicon1.png b/src/assets/img/favicon1.png
index 554dbbc..84abf6c 100644
Binary files a/src/assets/img/favicon1.png and b/src/assets/img/favicon1.png differ
diff --git a/src/assets/img/ftrlogo_dark.png b/src/assets/img/ftrlogo_dark.png
index 50fdf29..904c6ad 100644
Binary files a/src/assets/img/ftrlogo_dark.png and b/src/assets/img/ftrlogo_dark.png differ
diff --git a/src/assets/img/ftrlogo_light.png b/src/assets/img/ftrlogo_light.png
index a783cf8..dac43da 100644
Binary files a/src/assets/img/ftrlogo_light.png and b/src/assets/img/ftrlogo_light.png differ
diff --git a/src/assets/img/logo_dark.png b/src/assets/img/logo_dark.png
index 4c3a36d..7b64bbf 100644
Binary files a/src/assets/img/logo_dark.png and b/src/assets/img/logo_dark.png differ
diff --git a/src/assets/img/logo_light.png b/src/assets/img/logo_light.png
index a4f3b8f..b7b7d6a 100644
Binary files a/src/assets/img/logo_light.png and b/src/assets/img/logo_light.png differ