designRauno
Custom Selection Styling
SHOULD
SHOULD: Style `::selection` with brand colors instead of shipping the browser default blue.
Style the document selection state with ::selection to match the brand
::selection { background: var(--accent); color: var(--accent-foreground); }Bad
Good
Why it matters
The default browser selection color is a generic blue that rarely matches your design. Customizing ::selection with your brand colors creates a more cohesive and polished experience. It's a small detail that shows attention to craft.
References