extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
67 lines (62 loc) • 1.52 kB
JavaScript
Ext.define('Ext.chart.theme.Midnight', {
extend: 'Ext.chart.theme.Base',
singleton: true,
alias: [
'chart.theme.midnight',
'chart.theme.Midnight'
],
config: {
colors: [
'#A837FF',
'#4AC0F2',
'#FF4D35',
'#FF8809',
'#61C102',
'#FF37EA'
],
chart: {
defaults: {
background: 'rgb(52, 52, 53)'
}
},
axis: {
defaults: {
style: {
strokeStyle: 'rgb(224, 224, 227)'
},
label: {
fillStyle: 'rgb(224, 224, 227)'
},
title: {
fillStyle: 'rgb(224, 224, 227)'
},
grid: {
strokeStyle: 'rgb(112, 112, 115)'
}
}
},
series: {
defaults: {
label: {
fillStyle: 'rgb(224, 224, 227)'
}
}
},
sprites: {
text: {
fillStyle: 'rgb(224, 224, 227)'
}
},
legend: {
label: {
fillStyle: 'white'
},
border: {
lineWidth: 2,
fillStyle: 'rgba(255, 255, 255, 0.3)',
strokeStyle: 'rgb(150, 150, 150)'
},
background: 'rgb(52, 52, 53)'
}
}
});