dartterm/lib/colors.dart

9 lines
180 B
Dart
Raw Permalink Normal View History

2023-09-06 23:38:53 +00:00
import 'package:flutter/material.dart';
class Palette {
static const defaultBg = Colors.black;
static const defaultFg = Colors.white;
2023-09-10 01:40:56 +00:00
2023-09-10 22:29:51 +00:00
static const subtitle = Colors.red;
2023-09-06 23:38:53 +00:00
}