From 095205d0472922c899eec1968ccca971af50ef7c Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 12 Feb 2024 15:16:15 -0800 Subject: [PATCH] document that the "black" color should be updated in other places --- lib/styles/colors.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/styles/colors.dart b/lib/styles/colors.dart index accf9e63..6501f8b6 100644 --- a/lib/styles/colors.dart +++ b/lib/styles/colors.dart @@ -13,6 +13,9 @@ class AppColors { final Color greyStrong = const Color(0xFF272625); final Color greyMedium = const Color(0xFF9D9995); final Color white = Colors.white; + // NOTE: If this color is changed, also change it in + // - web/manifest.json + // - web/index.html - final Color black = const Color(0xFF1E1B18); final bool isDark = false;