9 lines
183 B
Dart
9 lines
183 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Palette {
|
|
static const defaultBg = Colors.black;
|
|
static const defaultFg = Colors.white;
|
|
|
|
static const subtitle = Colors.yellow;
|
|
}
|