mirror of
https://github.com/zontreck/NBTEditor
synced 2024-11-21 05:25:54 -07:00
6 lines
198 B
Dart
6 lines
198 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Constants {
|
|
static const Color TITLEBAR_COLOR = Color.fromARGB(255, 80, 0, 0);
|
|
static const Color DRAWER_COLOR = Color.fromARGB(255, 0, 75, 75);
|
|
}
|