2017-07-27 17:21:38 +03:00
|
|
|
export const DEFAULT_THEME = {
|
|
|
|
|
name: 'default',
|
2017-08-01 15:42:06 +03:00
|
|
|
base: null,
|
2017-07-27 17:21:38 +03:00
|
|
|
variables: {
|
2017-08-01 15:42:06 +03:00
|
|
|
|
2017-08-04 15:11:32 +03:00
|
|
|
temperature: ['#42db7d'],
|
2017-08-01 15:42:06 +03:00
|
|
|
|
|
|
|
|
solar: {
|
2017-08-07 16:12:38 +03:00
|
|
|
gradientLeft: '#42db7d',
|
|
|
|
|
gradientRight: '#42db7d',
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0)',
|
|
|
|
|
radius: ['80%', '90%'],
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
traffic: {
|
|
|
|
|
colorBlack: '#000000',
|
2017-08-07 16:12:38 +03:00
|
|
|
tooltipBg: '#ffffff',
|
|
|
|
|
tooltipBorderColor: '#c0c8d1',
|
|
|
|
|
tooltipExtraCss: 'border-radius: 10px; padding: 4px 16px;',
|
2017-09-01 17:18:02 +03:00
|
|
|
tooltipTextColor: '#2a2a2a',
|
|
|
|
|
tooltipFontWeight: 'bolder',
|
|
|
|
|
|
2017-08-07 16:12:38 +03:00
|
|
|
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',
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
electricity: {
|
2017-08-04 15:11:32 +03:00
|
|
|
tooltipBg: '#ffffff',
|
|
|
|
|
tooltipLineColor: 'rgba(0, 0, 0, 0)',
|
|
|
|
|
tooltipLineWidth: '0',
|
|
|
|
|
tooltipBorderColor: '#ebeef2',
|
2017-08-07 16:12:38 +03:00
|
|
|
tooltipExtraCss: 'border-radius: 10px; padding: 8px 24px;',
|
2017-09-01 17:18:02 +03:00
|
|
|
tooltipTextColor: '#2a2a2a',
|
|
|
|
|
tooltipFontWeight: 'bolder',
|
2017-08-04 15:11:32 +03:00
|
|
|
|
2017-08-29 10:54:30 +03:00
|
|
|
axisLineColor: 'rgba(0, 0, 0, 0)',
|
2017-09-01 17:18:02 +03:00
|
|
|
xAxisTextColor: '#2a2a2a',
|
2017-08-04 15:11:32 +03:00
|
|
|
yAxisSplitLine: '#ebeef2',
|
|
|
|
|
|
|
|
|
|
itemBorderColor: '#42db7d',
|
|
|
|
|
lineStyle: 'solid',
|
|
|
|
|
lineWidth: '4',
|
|
|
|
|
lineGradFrom: '#42db7d',
|
|
|
|
|
lineGradTo: '#42db7d',
|
|
|
|
|
lineShadow: 'rgba(0, 0, 0, 0)',
|
|
|
|
|
|
|
|
|
|
areaGradFrom: '#ebeef2',
|
|
|
|
|
areaGradTo: '#ebeef2',
|
|
|
|
|
shadowLineDarkBg: 'rgba(0, 0, 0, 0)',
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
bubbleMap: {
|
2017-09-01 19:53:04 +03:00
|
|
|
titleColor: '#484848',
|
|
|
|
|
areaColor: '#dddddd',
|
|
|
|
|
areaHoverColor: '#cccccc',
|
|
|
|
|
areaBorderColor: '#ebeef2',
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
echarts: {
|
2017-08-28 13:34:21 +03:00
|
|
|
bg: '#ffffff',
|
|
|
|
|
textColor: '#484848',
|
|
|
|
|
axisLineColor: '#bbbbbb',
|
|
|
|
|
splitLineColor: '#ebeef2',
|
|
|
|
|
itemHoverShadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
|
|
|
tooltipBackgroundColor: '#6a7985',
|
|
|
|
|
areaOpacity: '0.7',
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
chartjs: {
|
2017-08-29 10:54:30 +03:00
|
|
|
axisLineColor: '#cccccc',
|
|
|
|
|
textColor: '#484848',
|
2017-08-01 15:42:06 +03:00
|
|
|
},
|
2017-07-27 17:21:38 +03:00
|
|
|
},
|
|
|
|
|
};
|