pastelBorder method

Border pastelBorder()

Implementation

Border pastelBorder() {
  return accessibility.accessFeatures.highContrast
      ? Border.all(color: coloration.accentColor(), width: 2)
      : Border.all(
          color: coloration.accentColor().withOpacity(0.25), width: 1);
}