diff --git a/src/app/components/dashboard/dashboard.component.ts b/src/app/components/dashboard/dashboard.component.ts index 495b2f3..a324592 100644 --- a/src/app/components/dashboard/dashboard.component.ts +++ b/src/app/components/dashboard/dashboard.component.ts @@ -64,18 +64,22 @@ export class DashboardComponent { label: '2 Hour', data: hourlyData, fill: false, - backgroundColor: documentStyle.getPropertyValue('--primary-color'), - borderColor: documentStyle.getPropertyValue('--primary-color'), - tension: .4 + backgroundColor: documentStyle.getPropertyValue('--yellow-600'), + borderColor: documentStyle.getPropertyValue('--yellow-600'), + tension: .4, + pointRadius: 1, + borderWidth: 1 }, { type: 'line', label: '10 Minute', data: data, fill: false, - backgroundColor: documentStyle.getPropertyValue('--bluegray-700'), - borderColor: documentStyle.getPropertyValue('--bluegray-700'), - tension: .4 + backgroundColor: documentStyle.getPropertyValue('--primary-color'), + borderColor: documentStyle.getPropertyValue('--primary-color'), + tension: .4, + pointRadius: 1, + borderWidth: 1 }, ] diff --git a/src/app/components/splash/splash.component.html b/src/app/components/splash/splash.component.html index af416c7..b871045 100644 --- a/src/app/components/splash/splash.component.html +++ b/src/app/components/splash/splash.component.html @@ -24,9 +24,9 @@

- Pleb mining (under 10TH/s miners) mine with NO FEES* + Pleb mining (under 50TH/s miners) mine with NO FEES*
- Miners with > 10TH/s will incur a 1.5% fee, a portion of which will go back into open source Bitcoin mining* + Miners with > 50TH/s will incur a 1.5% fee, a portion of which will go back into open source Bitcoin mining*

No second best. diff --git a/src/app/components/splash/splash.component.ts b/src/app/components/splash/splash.component.ts index 9c7c290..ee711cd 100644 --- a/src/app/components/splash/splash.component.ts +++ b/src/app/components/splash/splash.component.ts @@ -33,9 +33,11 @@ export class SplashComponent { label: 'Public-Pool Hashrate', data: info.chartData.map((d: any) => d.data), fill: false, - backgroundColor: documentStyle.getPropertyValue('--bluegray-700'), - borderColor: documentStyle.getPropertyValue('--bluegray-700'), - tension: .4 + backgroundColor: documentStyle.getPropertyValue('--primary-color'), + borderColor: documentStyle.getPropertyValue('--primary-color'), + tension: .4, + pointRadius: 1, + borderWidth: 1 } ] } diff --git a/src/app/components/worker-group/worker-group.component.ts b/src/app/components/worker-group/worker-group.component.ts index 217b3bc..5abb11c 100644 --- a/src/app/components/worker-group/worker-group.component.ts +++ b/src/app/components/worker-group/worker-group.component.ts @@ -38,9 +38,11 @@ export class WorkerGroupComponent { label: workerInfo.name, data: workerInfo.chartData.map((d: any) => d.data), fill: false, - backgroundColor: documentStyle.getPropertyValue('--bluegray-700'), - borderColor: documentStyle.getPropertyValue('--bluegray-700'), - tension: .4 + backgroundColor: documentStyle.getPropertyValue('--primary-color'), + borderColor: documentStyle.getPropertyValue('--primary-color'), + tension: .4, + pointRadius: 1, + borderWidth: 1 } ] } diff --git a/src/app/components/worker/worker.component.ts b/src/app/components/worker/worker.component.ts index cbe1c63..f438796 100644 --- a/src/app/components/worker/worker.component.ts +++ b/src/app/components/worker/worker.component.ts @@ -38,9 +38,11 @@ export class WorkerComponent { label: workerInfo.name, data: workerInfo.chartData.map((d: any) => d.data), fill: false, - backgroundColor: documentStyle.getPropertyValue('--bluegray-700'), - borderColor: documentStyle.getPropertyValue('--bluegray-700'), - tension: .4 + backgroundColor: documentStyle.getPropertyValue('--primary-color'), + borderColor: documentStyle.getPropertyValue('--primary-color'), + tension: .4, + pointRadius: 1, + borderWidth: 1 } ] }