@app-studio/web 0.7.5 → 0.7.6

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.
package/dist/web.esm.js CHANGED
@@ -958,7 +958,7 @@ var ButtonView = function ButtonView(_ref) {
958
958
  filled: {
959
959
  // Defines CSS properties for 'link' variant of the button with conditional styles based on reverse state, includes text decoration.
960
960
  backgroundColor: reverse ? 'transparent' : buttonColor,
961
- color: reverse ? isLight ? 'color.white' : buttonColor : isLight ? buttonColor : 'color.white',
961
+ color: reverse ? isLight ? getColor('color.white') : buttonColor : isLight ? buttonColor : getColor('color.white'),
962
962
  borderWidth: 1,
963
963
  borderStyle: 'solid',
964
964
  borderColor: reverse ? buttonColor : 'transparent'