pile_nav_new/lib/constants.dart

13 lines
340 B
Dart
Raw Normal View History

2024-08-18 22:42:37 +08:00
import 'package:flutter/material.dart';
enum Themes { device, light, dark, oled }
enum DayType { clear, check, fail, skip }
class HaboColors {
static const Color primary = Color(0xFF09BF30);
static const Color red = Color(0xFFF44336);
static const Color skip = Color(0xFFFBC02D);
static const Color orange = Color(0xFFFF9800);
}