success constant

ButtonStyle const success

Success button (green)

Implementation

static const ButtonStyle success = ButtonStyle._(
  base: {
    'background-color': ArcaneColors.success,
    'color': ArcaneColors.successForeground,
    'border': 'none',
  },
  hover: {
    'filter': 'brightness(1.1)',
  },
);