7 lines
193 B
Dart
7 lines
193 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class AppColors {
|
|
static const mainDarkBlue = Color.fromRGBO(3, 37, 65, 1);
|
|
static const mainLightBlue = Color.fromRGBO(48, 86, 117, 1);
|
|
}
|