neon constant

RatingTheme const neon

Implementation

static const neon = RatingTheme(
  name: 'Neon',
  background: LinearGradient(
    begin: Alignment.topLeft,
    end: Alignment.bottomRight,
    colors: [Color(0xFF000000), Color(0xFF2E1065), Color(0xFF000000)],
  ),
  dialogColor: Color(0x99000000),
  buttonGradient: LinearGradient(
    colors: [Color(0xFFEC4899), Color(0xFF8B5CF6)],
  ),
  progressGradient: LinearGradient(
    colors: [Color(0xFFF472B6), Color(0xFFA855F7)],
  ),
  textColor: Colors.white,
  textSecondaryColor: Color(0xE6FBCFE8),
  textMutedColor: Color(0xB3F9A8D4),
  starColor: Color(0xFFFDE047),
  accentColor: Color(0x66EC4899),
);