refactor(echarts): update js theme

This commit is contained in:
Sergey Andrievskiy 2019-06-21 21:36:40 +03:00
parent 3284411ec4
commit 9fbe9b6bc2
3 changed files with 15 additions and 15 deletions

View file

@ -172,12 +172,12 @@ export const CORPORATE_THEME = {
},
echarts: {
bg: '#ffffff',
textColor: '#484848',
axisLineColor: '#bbbbbb',
splitLineColor: '#ebeef2',
bg: theme.bg,
textColor: theme.fgText,
axisLineColor: theme.fgText,
splitLineColor: theme.separator,
itemHoverShadowColor: 'rgba(0, 0, 0, 0.5)',
tooltipBackgroundColor: '#6a7985',
tooltipBackgroundColor: theme.primary,
areaOpacity: '0.7',
},

View file

@ -172,12 +172,12 @@ export const COSMIC_THEME = {
},
echarts: {
bg: '#3d3780',
textColor: '#ffffff',
axisLineColor: '#a1a1e5',
splitLineColor: '#342e73',
bg: theme.bg,
textColor: theme.fgText,
axisLineColor: theme.fgText,
splitLineColor: theme.separator,
itemHoverShadowColor: 'rgba(0, 0, 0, 0.5)',
tooltipBackgroundColor: '#6a7985',
tooltipBackgroundColor: theme.primary,
areaOpacity: '1',
},

View file

@ -172,12 +172,12 @@ export const DEFAULT_THEME = {
},
echarts: {
bg: '#ffffff',
textColor: '#484848',
axisLineColor: '#bbbbbb',
splitLineColor: '#ebeef2',
bg: theme.bg,
textColor: theme.fgText,
axisLineColor: theme.fgText,
splitLineColor: theme.separator,
itemHoverShadowColor: 'rgba(0, 0, 0, 0.5)',
tooltipBackgroundColor: '#6a7985',
tooltipBackgroundColor: theme.primary,
areaOpacity: '0.7',
},