This color scheme looks solid, more small tweaks

This commit is contained in:
Erwin Ried 2020-05-11 15:30:21 +02:00
parent 904339370b
commit b48b0efe5c
6 changed files with 38 additions and 38 deletions

View File

@ -209,21 +209,21 @@ static constexpr Bitmap bitmap_icon_bht {
static constexpr uint8_t bitmap_icon_biast_off_data[] = {
0x00, 0x00,
0xFC, 0x3F,
0x00, 0x02,
0x00, 0x0E,
0x00, 0x18,
0xFE, 0x7F,
0x00, 0x04,
0x00, 0x08,
0x00, 0x10,
0x88, 0x18,
0xD8, 0x0E,
0x70, 0x18,
0x00, 0x08,
0x88, 0x04,
0x50, 0x08,
0x20, 0x10,
0x70, 0x18,
0xD8, 0x0E,
0x88, 0x18,
0x50, 0x08,
0x88, 0x04,
0x00, 0x08,
0x00, 0x10,
0x00, 0x18,
0x00, 0x0E,
0x00, 0x08,
0x00, 0x04,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_biast_off {
{ 16, 16 }, bitmap_icon_biast_off_data
@ -232,20 +232,20 @@ static constexpr Bitmap bitmap_icon_biast_off {
static constexpr uint8_t bitmap_icon_biast_on_data[] = {
0x00, 0x00,
0xFE, 0x7F,
0x00, 0x02,
0x00, 0x0E,
0x20, 0x18,
0x00, 0x04,
0x00, 0x08,
0x20, 0x10,
0x30, 0x18,
0x10, 0x0E,
0x38, 0x18,
0x20, 0x08,
0x30, 0x04,
0x30, 0x08,
0xF8, 0x10,
0xE0, 0x18,
0x40, 0x0E,
0x60, 0x18,
0x60, 0x08,
0x60, 0x04,
0x20, 0x08,
0x20, 0x10,
0x20, 0x18,
0x00, 0x0E,
0x00, 0x08,
0x00, 0x04,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_biast_on {
{ 16, 16 }, bitmap_icon_biast_on_data
@ -296,20 +296,20 @@ static constexpr Bitmap bitmap_icon_burger {
};
static constexpr uint8_t bitmap_icon_camera_data[] = {
0x00, 0x00,
0x00, 0x00,
0xE0, 0x07,
0xF0, 0x0F,
0x3E, 0x7C,
0xDE, 0x7B,
0xEE, 0x77,
0xEE, 0x77,
0xEE, 0x77,
0xEE, 0x77,
0xDE, 0x7B,
0x3E, 0x7C,
0xFE, 0x7F,
0x3F, 0xFC,
0xDF, 0xFB,
0xEF, 0xF7,
0xEF, 0xF7,
0xEF, 0xF7,
0xEF, 0xF7,
0xDF, 0xFB,
0x3F, 0xFC,
0xFF, 0xFF,
0xFE, 0x7F,
0x00, 0x00,
0x00, 0x00,
0x00, 0x00,
};
@ -1273,13 +1273,13 @@ static constexpr uint8_t bitmap_icon_stealth_data[] = {
0xE0, 0x07,
0x60, 0x06,
0x00, 0x00,
0x70, 0x0E,
0xF0, 0x0F,
0xF8, 0x1F,
0xFC, 0x3E,
0xF0, 0x0F,
0xF8, 0x1E,
0xFC, 0x3F,
0xFC, 0x3E,
0xFC, 0x3F,
0x00, 0x00,
};
static constexpr Bitmap bitmap_icon_stealth {
{ 16, 16 }, bitmap_icon_stealth_data

View File

@ -418,7 +418,7 @@ UtilitiesMenuView::UtilitiesMenuView(NavigationView& nav) {
/* SystemMenuView ********************************************************/
void SystemMenuView::hackrf_mode(NavigationView& nav) {
nav.push<ModalMessageView>("HackRF mode", "This mode enables USB\nfunctionality. Reset the\ndevice to get back.\n\nDo you want to Switch now?", YESNO,
nav.push<ModalMessageView>("HackRF mode", "This mode enables the USB\nfunctionality. Reset the\ndevice to get back.\n\nDo you want to Switch now?", YESNO,
[this](bool choice) {
if (choice) {
EventDispatcher::request_stop();
@ -435,7 +435,7 @@ SystemMenuView::SystemMenuView(NavigationView& nav) {
{ "Capture", ui::Color::red(), &bitmap_icon_capture, [&nav](){ nav.push<CaptureAppView>(); } },
{ "Replay", ui::Color::green(), &bitmap_icon_replay, [&nav](){ nav.push<ReplayAppView>(); } },
{ "Calls", ui::Color::yellow(), &bitmap_icon_search, [&nav](){ nav.push<SearchView>(); } },
{ "Scanner", ui::Color::orange(), &bitmap_icon_scanner, [&nav](){ nav.push<ScannerView>(); } },
{ "Scanner", ui::Color::yellow(), &bitmap_icon_scanner, [&nav](){ nav.push<ScannerView>(); } },
{ "Tools", ui::Color::cyan(), &bitmap_icon_utilities, [&nav](){ nav.push<UtilitiesMenuView>(); } },
{ "Options", ui::Color::cyan(), &bitmap_icon_setup, [&nav](){ nav.push<SettingsMenuView>(); } },
{ "Debug", ui::Color::light_grey(), &bitmap_icon_debug, [&nav](){ nav.push<DebugMenuView>(); } },

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 B

After

Width:  |  Height:  |  Size: 153 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 B

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

After

Width:  |  Height:  |  Size: 165 B