first commit
This commit is contained in:
24
lib/theme/app_colors.dart
Normal file
24
lib/theme/app_colors.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
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._();
|
||||
}
|
||||
Reference in New Issue
Block a user