rt-sim-training-client/src/jmap/config/deviceStyle.js

18 lines
280 B
JavaScript
Raw Normal View History

2019-07-03 18:41:00 +08:00
import deviceType from './deviceType';
const deviceStyle = {
2019-07-04 10:59:40 +08:00
Global: {
textFontSize: '8.2',
backgroundColor: '#000000'
}
};
2019-07-03 18:41:00 +08:00
/** link风格配置*/
deviceStyle[deviceType.Link] = {
2019-07-04 10:59:40 +08:00
linkColor: 'red',
linkWidth: 8,
linkTextColor: '#FFFFFF'
};
2019-07-03 18:41:00 +08:00
2019-07-04 10:59:40 +08:00
export default deviceStyle;