34 lines
1.0 KiB
Dart
34 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Design tokens for Claims Overview dashboard (light theme).
|
|
abstract final class ClaimsOverviewTheme {
|
|
static const Color primary = Color(0xFF14A39A);
|
|
static const Color pageBg = Color(0xFFF9FAFB);
|
|
static const Color cardBg = Colors.white;
|
|
static const Color textPrimary = Color(0xFF1E293B);
|
|
static const Color textSecondary = Color(0xFF64748B);
|
|
static const Color border = Color(0xFFE2E8F0);
|
|
|
|
static const Color teal = Color(0xFF14A39A);
|
|
static const Color orange = Color(0xFFF2853F);
|
|
static const Color purple = Color(0xFF6366F1);
|
|
static const Color green = Color(0xFF22C55E);
|
|
static const Color yellow = Color(0xFFF59E0B);
|
|
static const Color red = Color(0xFFEF4444);
|
|
static const Color blue = Color(0xFF3B82F6);
|
|
static const Color pink = Color(0xFFEC4899);
|
|
static const Color cyan = Color(0xFF06B6D4);
|
|
static const Color lavender = Color(0xFFA78BFA);
|
|
|
|
static const List<Color> chartPalette = [
|
|
teal,
|
|
orange,
|
|
purple,
|
|
green,
|
|
yellow,
|
|
red,
|
|
cyan,
|
|
lavender,
|
|
];
|
|
}
|