Swap LightGray and DarkGray.

This commit is contained in:
2025-02-26 14:58:37 -05:00
parent 17227de37a
commit 69177ff958

View File

@@ -13,8 +13,8 @@ namespace Colors {
COLOR White{255, 255, 255}; COLOR White{255, 255, 255};
COLOR Black{0, 0, 0}; COLOR Black{0, 0, 0};
COLOR Gray{128, 128, 128}; COLOR Gray{128, 128, 128};
COLOR DarkGray{192, 192, 192}; COLOR DarkGray{64, 64, 64};
COLOR LightGray{64, 64, 64}; COLOR LightGray{192, 192, 192};
COLOR Yellow{255, 255, 0}; COLOR Yellow{255, 255, 0};
} }
using namespace Primary; using namespace Primary;