mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-14 20:28:06 +01:00
feat(dashboard): improve charts and other cards for correct theme switching
This commit is contained in:
parent
3880ab3d74
commit
f630a1d540
20 changed files with 280 additions and 138 deletions
|
|
@ -12,18 +12,24 @@ export const COSMIC_THEME = {
|
|||
],
|
||||
|
||||
solar: {
|
||||
color: '#19977E',
|
||||
shadowColor: 'rgba(0, 217, 119, 0.3)',
|
||||
gradientLeft: '#7bff24',
|
||||
gradientRight: '#2ec7fe',
|
||||
shadowColor: '#19977E',
|
||||
radius: ['70%', '90%'],
|
||||
},
|
||||
|
||||
traffic: {
|
||||
colorBlack: '#000000',
|
||||
tooltipBg: 'rgba(0, 255, 170, 0.35)',
|
||||
lineBg: 'rgba(146, 141, 255, 0.5)',
|
||||
shadowLineBg: '#bdbaff',
|
||||
shadowLineDarkBg: '#a695ff',
|
||||
tooltipBorderColor: '#00d977',
|
||||
tooltipExtraCss: 'box-shadow: 0px 2px 46px 0 rgba(0, 255, 170, 0.35); border-radius: 10px; padding: 4px 16px;',
|
||||
tooltipTextColor: '#ffffff',
|
||||
lineBg: '#d1d1ff',
|
||||
lineShadowBlur: '14',
|
||||
itemColor: '#BEBBFF',
|
||||
itemBorderColor: '#ffffff',
|
||||
itemEmphasisBorderColor: '#ffffff',
|
||||
shadowLineDarkBg: '#655ABD',
|
||||
shadowLineShadow: 'rgba(33, 7, 77, 0.5)',
|
||||
gradFrom: 'rgba(118, 89, 255, 0.4)',
|
||||
gradTo: 'rgba(164, 84, 255, 0.5)',
|
||||
|
|
@ -34,7 +40,7 @@ export const COSMIC_THEME = {
|
|||
tooltipLineColor: 'rgba(255, 255, 255, 0.1)',
|
||||
tooltipLineWidth: '1',
|
||||
tooltipBorderColor: '#00d977',
|
||||
tooltipExtraCss: 'box-shadow: 0px 2px 46px 0 rgba(0, 255, 170, 0.35);border-radius: 10px;padding: 8px 24px;',
|
||||
tooltipExtraCss: 'box-shadow: 0px 2px 46px 0 rgba(0, 255, 170, 0.35); border-radius: 10px; padding: 8px 24px;',
|
||||
tooltipTextColor: '#ffffff',
|
||||
|
||||
xAxisColor: 'rgba(161, 161 ,229, 0.3)',
|
||||
|
|
|
|||
|
|
@ -6,21 +6,27 @@ export const DEFAULT_THEME = {
|
|||
temperature: ['#42db7d'],
|
||||
|
||||
solar: {
|
||||
color: '#19977E',
|
||||
shadowColor: 'rgba(0, 217, 119, 0.3)',
|
||||
gradientLeft: '#7bff24',
|
||||
gradientRight: '#2ec7fe',
|
||||
gradientLeft: '#42db7d',
|
||||
gradientRight: '#42db7d',
|
||||
shadowColor: 'rgba(0, 0, 0, 0)',
|
||||
radius: ['80%', '90%'],
|
||||
},
|
||||
|
||||
traffic: {
|
||||
colorBlack: '#000000',
|
||||
tooltipBg: 'rgba(0, 255, 170, 0.35)',
|
||||
lineBg: 'rgba(146, 141, 255, 0.5)',
|
||||
shadowLineBg: '#bdbaff',
|
||||
shadowLineDarkBg: '#a695ff',
|
||||
shadowLineShadow: 'rgba(33, 7, 77, 0.5)',
|
||||
gradFrom: 'rgba(118, 89, 255, 0.4)',
|
||||
gradTo: 'rgba(164, 84, 255, 0.5)',
|
||||
tooltipBg: '#ffffff',
|
||||
tooltipBorderColor: '#c0c8d1',
|
||||
tooltipExtraCss: 'border-radius: 10px; padding: 4px 16px;',
|
||||
tooltipTextColor: '#222222',
|
||||
lineBg: '#c0c8d1',
|
||||
lineShadowBlur: '1',
|
||||
itemColor: '#bcc3cc',
|
||||
itemBorderColor: '#bcc3cc',
|
||||
itemEmphasisBorderColor: '#42db7d',
|
||||
shadowLineDarkBg: 'rgba(0, 0, 0, 0)',
|
||||
shadowLineShadow: 'rgba(0, 0, 0, 0)',
|
||||
gradFrom: '#ebeef2',
|
||||
gradTo: '#ebeef2',
|
||||
},
|
||||
|
||||
electricity: {
|
||||
|
|
@ -28,7 +34,7 @@ export const DEFAULT_THEME = {
|
|||
tooltipLineColor: 'rgba(0, 0, 0, 0)',
|
||||
tooltipLineWidth: '0',
|
||||
tooltipBorderColor: '#ebeef2',
|
||||
tooltipExtraCss: 'border-radius: 10px;padding: 8px 24px;',
|
||||
tooltipExtraCss: 'border-radius: 10px; padding: 8px 24px;',
|
||||
tooltipTextColor: '#222222',
|
||||
|
||||
xAxisColor: 'rgba(0, 0, 0, 0)',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue