index.axmlloadingColor.sjs 247 B

12345678910111213141516
  1. var antmove_export = {};
  2. function get(type, color, plain) {
  3. if (plain) {
  4. return color ? color : '#c9c9c9';
  5. }
  6. if (type === 'default') {
  7. return '#c9c9c9';
  8. }
  9. return 'white';
  10. }
  11. antmove_export = get;
  12. export default antmove_export;