lightModeBorder method

Border lightModeBorder()

Implementation

Border lightModeBorder() {
  return accessibility.accessFeatures.highContrast == true
      ? Border.all(color: onyx(), width: 2)
      : Border.all(color: black().withOpacity(0.25), width: 1);
}