@basic-ui/material 1.0.0-alpha.15 → 1.0.0-alpha.16

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.
@@ -2690,7 +2690,6 @@ const ListItem = /*#__PURE__*/react$1.forwardRef(function ListItem(props, forwar
2690
2690
  const selected = ariaSelectedProp || selectedProp;
2691
2691
  const color = rippleColor || colorProp || 'primary';
2692
2692
  const theme = useTheme();
2693
- const baseOpacity = 0.12;
2694
2693
  const hoverOpacity = 0.16;
2695
2694
  const focusOpacity = 0.24;
2696
2695
  return /*#__PURE__*/jsxRuntime.jsx(Box, {
@@ -2718,20 +2717,20 @@ const ListItem = /*#__PURE__*/react$1.forwardRef(function ListItem(props, forwar
2718
2717
  backgroundColor: alpha('on.surface', focusOpacity)
2719
2718
  },
2720
2719
  ':active': {
2721
- backgroundColor: alpha('on.surface', baseOpacity + 0.12)
2720
+ backgroundColor: alpha('on.surface', focusOpacity)
2722
2721
  },
2723
2722
  '&[aria-selected="true"]': {
2724
- backgroundColor: alpha(color, baseOpacity + 0.12),
2723
+ backgroundColor: alpha(color, 0.08),
2725
2724
  color,
2726
2725
  ':hover': {
2727
- backgroundColor: alpha(color, hoverOpacity + 0.12)
2726
+ backgroundColor: alpha(color, hoverOpacity)
2728
2727
  },
2729
2728
  ':focus': {
2730
2729
  outline: 'none',
2731
- backgroundColor: alpha(color, focusOpacity + 0.12)
2730
+ backgroundColor: alpha(color, focusOpacity)
2732
2731
  },
2733
2732
  ':active': {
2734
- backgroundColor: alpha(color, baseOpacity + 0.24)
2733
+ backgroundColor: alpha(color, focusOpacity)
2735
2734
  }
2736
2735
  },
2737
2736
  '&[data-disabled]': {