dartterm/lib/colors.dart

27 lines
757 B
Dart
Raw Normal View History

2023-09-06 23:38:53 +00:00
import 'package:flutter/material.dart';
class Palette {
2023-09-23 01:35:47 +00:00
static const defaultBg = Color(0xFF272D1B);
2023-09-23 04:08:03 +00:00
static const uiBg = Color(0xFF232308);
2023-09-23 01:35:47 +00:00
static const defaultFg = Color(0xFFEEE9D1);
static const demoPlayer = Color(0xFFFEFEF2);
2023-09-10 01:40:56 +00:00
2023-09-23 01:35:47 +00:00
static const demoDoor = Color(0xFF847A4B);
static const demoExit = Color(0xFF847A4B);
2023-09-23 04:08:03 +00:00
static const sitemodePlayer = demoPlayer;
static const sitemodeSeenDoor = Color(0xFFFEFD4B);
static const sitemodeUnseenDoor = demoExit;
static const sitemodeSeenWall = defaultFg;
static const sitemodeUnseenWall = demoExit;
static const sitemodeSeenExit = defaultFg;
static const sitemodeUnseenExit = demoExit;
static const sitemodeSeenFloor = uiBg;
static const demoFloorHighlight = Color(0xFF863B6F);
2023-09-06 23:38:53 +00:00
}