6 lines
186 B
Dart
6 lines
186 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Constants {
|
|
static const TITLEBAR_COLOR = Color.fromARGB(255, 97, 0, 0);
|
|
static const DRAWER_COLOR = Color.fromARGB(148, 0, 97, 97);
|
|
}
|