@superdispatch/ui 0.35.0 → 0.35.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2532,9 +2532,10 @@ var useStyles$c = /*#__PURE__*/styles.makeStyles(theme => ({
2532
2532
  }
2533
2533
  },
2534
2534
  variantBold: {
2535
- color: exports.ColorDynamic.White,
2535
+ color: exports.Color.White,
2536
2536
  '&$colorGrey': {
2537
- backgroundColor: exports.ColorDynamic.Dark300
2537
+ backgroundColor: exports.ColorDynamic.Dark300,
2538
+ color: exports.ColorDynamic.White
2538
2539
  },
2539
2540
  '&$colorBlue': {
2540
2541
  backgroundColor: exports.ColorDynamic.Blue300
@@ -2688,7 +2689,7 @@ function overrideAvatar(theme) {
2688
2689
  }),
2689
2690
  colorDefault: {
2690
2691
  color: exports.ColorDynamic.Dark300,
2691
- backgroundColor: exports.ColorDynamic.Silver300
2692
+ backgroundColor: exports.ColorDynamic.Silver400
2692
2693
  }
2693
2694
  };
2694
2695
  }
@@ -2963,7 +2964,7 @@ function overrideCheckbox(theme) {
2963
2964
  fill: "currentColor",
2964
2965
  rx: "2"
2965
2966
  }), /*#__PURE__*/jsxRuntime.jsx("path", {
2966
- fill: exports.ColorDynamic.White,
2967
+ fill: exports.Color.White,
2967
2968
  d: "M15.73 8l-.63.63c-1.43 1.43-2.94 3.05-4.37 4.5l-1.9-1.57-.7-.57L7 12.38l.7.57 2.53 2.09.63.52.58-.58c1.6-1.62 3.35-3.5 4.93-5.08l.63-.63L15.73 8z"
2968
2969
  })]
2969
2970
  }),
@@ -3403,7 +3404,7 @@ function overrideRadio(theme) {
3403
3404
  cx: "12",
3404
3405
  cy: "12",
3405
3406
  r: "4",
3406
- fill: exports.ColorDynamic.White
3407
+ fill: exports.Color.White
3407
3408
  })]
3408
3409
  })
3409
3410
  };
@@ -3523,7 +3524,7 @@ function overrideSwitch(theme) {
3523
3524
  }
3524
3525
  },
3525
3526
  thumb: {
3526
- color: exports.ColorDynamic.White,
3527
+ color: exports.Color.White,
3527
3528
  boxShadow: undefined,
3528
3529
  width: theme.spacing(3),
3529
3530
  height: theme.spacing(3),
@@ -3597,6 +3598,9 @@ function overrideTabs(theme) {
3597
3598
  transition: theme.transitions.create('opacity', {
3598
3599
  duration: theme.transitions.duration.short
3599
3600
  })
3601
+ },
3602
+ indicator: {
3603
+ backgroundColor: exports.ColorDynamic.Blue500
3600
3604
  }
3601
3605
  };
3602
3606
  theme.overrides.MuiTab = {
@@ -3614,7 +3618,10 @@ function overrideTabs(theme) {
3614
3618
  textColorPrimary: {
3615
3619
  color: exports.ColorDynamic.Dark500,
3616
3620
  '&:hover, &:focus': {
3617
- color: exports.ColorDynamic.Blue300
3621
+ color: exports.ColorDynamic.Blue500
3622
+ },
3623
+ '&$selected': {
3624
+ color: exports.ColorDynamic.Blue500
3618
3625
  }
3619
3626
  }
3620
3627
  };