26 lines
975 B
Dart
26 lines
975 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppColor {
|
|
static const Color primaryColor = Color(0xFF2563EB); // Modern Blue
|
|
static const Color primaryLight = Color(0xFFDBEAFE);
|
|
static const Color writeColor = Color(0xFF1E293B); // Darker Slate
|
|
static const Color surfaceColor = Color(0xFFF8FAFC);
|
|
|
|
static const Color bronze = Color(0xFFCD7F32);
|
|
static const Color goldenBronze = Color(0xFFB87333);
|
|
static const Color gold = Color(0xFFD4AF37);
|
|
|
|
static const Color secondaryColor = Colors.white;
|
|
static const Color accentColor = Color(0xFF64748B); // Slate Grey
|
|
static const Color greyColor = Color(0xFF94A3B8);
|
|
|
|
static const Color redColor = Color(0xFFEF4444);
|
|
static const Color greenColor = Color(0xFF10B981);
|
|
static const Color blueColor = Color(0xFF3B82F6);
|
|
static const Color yellowColor = Color(0xFFF59E0B);
|
|
|
|
static Color deepPurpleAccent = const Color(0xFF7C3AED);
|
|
static Color glassEffect = Colors.white.withOpacity(0.1);
|
|
}
|
|
|