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

18 lines
282 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: {
2019-07-10 16:29:07 +08:00
textFontSize: '6',
2019-07-04 10:59:40 +08:00
backgroundColor: '#000000'
}
};
2019-07-03 18:41:00 +08:00
/** link风格配置*/
deviceStyle[deviceType.Link] = {
2019-07-10 16:29:07 +08:00
linkColor: '#a0a0a0',
2019-07-04 10:59:40 +08:00
linkWidth: 8,
linkTextColor: '#FFFFFF'
};
2019-07-03 18:41:00 +08:00
2019-07-04 10:59:40 +08:00
export default deviceStyle;