neonSurface static method

Color neonSurface(
  1. bool isDark
)

Deep, near-black surface that makes a neon accent border glow.

Implementation

static Color neonSurface(bool isDark) =>
    isDark ? const Color(0xFF0B1020) : const Color(0xFF111827);