diff --git a/src/app/@theme/styles/theme.corporate.ts b/src/app/@theme/styles/theme.corporate.ts index 80da939c..3007fcc2 100644 --- a/src/app/@theme/styles/theme.corporate.ts +++ b/src/app/@theme/styles/theme.corporate.ts @@ -56,9 +56,10 @@ export const CORPORATE_THEME = { }, solar: { - gradientLeft: '#ff8ea0', - gradientRight: '#ffa36b', + gradientLeft: theme.primary, + gradientRight: theme.primary, shadowColor: 'rgba(0, 0, 0, 0)', + secondSeriesFill: theme.bg2, radius: ['80%', '90%'], }, diff --git a/src/app/@theme/styles/theme.cosmic.ts b/src/app/@theme/styles/theme.cosmic.ts index fdaf6121..e18bfca6 100644 --- a/src/app/@theme/styles/theme.cosmic.ts +++ b/src/app/@theme/styles/theme.cosmic.ts @@ -56,9 +56,10 @@ export const COSMIC_THEME = { }, solar: { - gradientLeft: '#7bff24', - gradientRight: '#2ec7fe', - shadowColor: '#19977E', + gradientLeft: theme.primary, + gradientRight: theme.primary, + shadowColor: 'rgba(0, 0, 0, 0)', + secondSeriesFill: theme.bg2, radius: ['70%', '90%'], }, diff --git a/src/app/@theme/styles/theme.default.ts b/src/app/@theme/styles/theme.default.ts index 555438a6..09831610 100644 --- a/src/app/@theme/styles/theme.default.ts +++ b/src/app/@theme/styles/theme.default.ts @@ -56,9 +56,10 @@ export const DEFAULT_THEME = { }, solar: { - gradientLeft: '#42db7d', - gradientRight: '#42db7d', + gradientLeft: theme.primary, + gradientRight: theme.primary, shadowColor: 'rgba(0, 0, 0, 0)', + secondSeriesFill: theme.bg2, radius: ['80%', '90%'], }, diff --git a/src/app/pages/dashboard/solar/solar.component.ts b/src/app/pages/dashboard/solar/solar.component.ts index 87e68671..a60e3ebd 100644 --- a/src/app/pages/dashboard/solar/solar.component.ts +++ b/src/app/pages/dashboard/solar/solar.component.ts @@ -112,7 +112,7 @@ export class SolarComponent implements AfterViewInit, OnDestroy { }, itemStyle: { normal: { - color: config.variables.layoutBg, + color: solarTheme.secondSeriesFill, }, }, },