first commit

This commit is contained in:
ytc1012
2025-11-22 18:17:35 +08:00
commit d427916c6a
169 changed files with 15241 additions and 0 deletions

24
lib/theme/app_colors.dart Normal file
View 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._();
}