25 lines
695 B
Dart
25 lines
695 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// App color palette following the design spec
|
|
/// Based on Morandi color system - calm and gentle
|
|
class AppColors {
|
|
// Primary colors
|
|
static const primary = Color(0xFFA7C4BC); // Calm Green
|
|
static const background = Color(0xFFF8F6F2); // Warm off-white
|
|
|
|
// Text colors
|
|
static const textPrimary = Color(0xFF5B6D6D);
|
|
static const textSecondary = Color(0xFF8A9B9B);
|
|
|
|
// Button colors
|
|
static const distractionButton = Color(0xFFE0E0E0);
|
|
static const success = Color(0xFF88C9A1);
|
|
|
|
// Additional colors
|
|
static const white = Color(0xFFFFFFFF);
|
|
static const divider = Color(0xFFF0F0F0);
|
|
|
|
// Prevent instantiation
|
|
AppColors._();
|
|
}
|