12 lines
526 B
Dart
12 lines
526 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppColor {
|
|
static const primary = Color(0xFF3B82F6); // Modern slate blue accent
|
|
static const secondary = Color(0xFF64748B); // Slate gray
|
|
static const danger = Color(0xFFEF4444); // Vibrant Red
|
|
static const warning = Color(0xFFF59E0B); // Vibrant Amber
|
|
static const success = Color(0xFF10B981); // Emerald Green
|
|
static const background = Color(0xFF0F172A); // Slate 900 Background
|
|
static const cardBg = Color(0xFF1E293B); // Slate 800 Card background
|
|
}
|