selectionFill method

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

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

Implementation

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