selectionFill method

Color selectionFill([
  1. double pct = 0.14
])

Selection-row tint at pct opacity over surface (mirrors the web color-mix(... accent N%, surface) highlight).

Implementation

Color selectionFill([double pct = 0.14]) => Color.alphaBlend(accent.withOpacity(pct), surface);