flutter: color: Change to crusoeColor and burlyWoodColor

This commit is contained in:
Calcitem 2021-02-25 01:02:03 +08:00
parent d3ab21b257
commit 3d975c2a86
2 changed files with 7 additions and 7 deletions

View File

@ -22,8 +22,8 @@ class UIColors {
// see:
// https://www.color-hex.com/color-palette/8548
// https://applecolors.com/palette/30822-chess-board-logo
static const asparagusColor = Color.fromARGB(0xFF, 118, 150, 86); // 769656
static const athsSpecialColor = Color.fromARGB(0xFF, 238, 238, 210); // eeeed2
static const crusoeColor = Color(0xFF165B31);
static const burlyWoodColor = Color(0xFFDEB887);
static const turmericColor = Color.fromARGB(0xFF, 186, 202, 68);
static const logoColor = Color(0xFF6D000D);
@ -31,10 +31,10 @@ class UIColors {
static const primaryColor = Color(0xFF461220);
static const secondaryColor = Color(0x99461220);
static const darkBackgroundColor = asparagusColor;
static const darkBackgroundColor = crusoeColor;
static const lightBackgroundColor = Color(0xFFEEE0CB);
static const boardBackgroundColor = athsSpecialColor;
static const boardBackgroundColor = burlyWoodColor;
static const darkTextPrimaryColor = Colors.white;
static const darkTextSecondaryColor = Colors.white;

View File

@ -20,7 +20,7 @@ class _HelpScreenState extends State<HelpScreen> {
child: SafeArea(
top: false,
child: Scaffold(
backgroundColor: UIColors.asparagusColor,
backgroundColor: UIColors.crusoeColor,
body: Column(
children: <Widget>[
const SizedBox(height: 16),
@ -31,7 +31,7 @@ class _HelpScreenState extends State<HelpScreen> {
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: UIColors.athsSpecialColor,
color: UIColors.burlyWoodColor,
),
),
),
@ -42,7 +42,7 @@ class _HelpScreenState extends State<HelpScreen> {
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
color: UIColors.athsSpecialColor,
color: UIColors.burlyWoodColor,
),
),
),