You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
399 B
11 lines
399 B
import 'package:flutter/material.dart';
|
|
|
|
class AppColors {
|
|
static const primaryBlue =
|
|
Color(0xFF04365F); // Replace with your exact logo tone
|
|
static const secondaryBlue =
|
|
Color(0xFF1976D2); // Replace if your logo has a secondary tone
|
|
static const neutralGrey = Color(0xFF8A8A8A);
|
|
static const accent =
|
|
Color(0xFFF7941D); // Example: if your logo has an orange or accent
|
|
}
|
|
|