diff --git a/bands.cpp b/bands.cpp index 322a0d6..f8d3c7e 100644 --- a/bands.cpp +++ b/bands.cpp @@ -20,7 +20,7 @@ constexpr Band_t bands [] PROGMEM { // { 0UL, 65535UL, 254, "UF"},//Utility conversion option // { 530000UL, 1700000UL, 253, "AM"},//Broadcast AM, actually centers at 268, but uint8 can't do that // { 1800000UL, 2000000UL, 160, "A0"},//0xA0 is 160 -// { 3500000UL, 3800000UL, 80, "80"}, + { 3500000UL, 3800000UL, 80, "80"}, // { 5330500UL, 5403500UL, 60, "60"}, { 7000000UL, 7200000UL, 40, "40"}, {10100000UL, 10150000UL, 30, "30"}, @@ -127,4 +127,3 @@ bool isFreqInBand(const uint32_t frequency, return false; } - diff --git a/color_theme.h b/color_theme.h index d76155e..3b4c0a5 100644 --- a/color_theme.h +++ b/color_theme.h @@ -3,7 +3,7 @@ #include "colors.h" static const unsigned int COLOR_TEXT = DISPLAY_WHITE; -static const unsigned int COLOR_BACKGROUND = DISPLAY_NAVY; +static const unsigned int COLOR_BACKGROUND = DISPLAY_BLACK; static const unsigned int COLOR_ACTIVE_VFO_TEXT = DISPLAY_WHITE; static const unsigned int COLOR_ACTIVE_VFO_BACKGROUND = DISPLAY_BLACK; @@ -16,7 +16,7 @@ static const unsigned int COLOR_INACTIVE_BACKGROUND = DISPLAY_BLACK; static const unsigned int COLOR_INACTIVE_BORDER = DISPLAY_DARKGREY; static const unsigned int COLOR_ACTIVE_TEXT = DISPLAY_BLACK; -static const unsigned int COLOR_ACTIVE_BACKGROUND = DISPLAY_ORANGE; +static const unsigned int COLOR_ACTIVE_BACKGROUND = DISPLAY_GREEN; static const unsigned int COLOR_ACTIVE_BORDER = DISPLAY_WHITE; -static const unsigned int COLOR_VERSION_TEXT = DISPLAY_LIGHTGREY; \ No newline at end of file +static const unsigned int COLOR_VERSION_TEXT = DISPLAY_GREEN;