mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
348 B
12 lines
348 B
#include "U8g2Display.h"
|
|
|
|
// Color scheme
|
|
ColorVal UIColor::window_bkg = 0;
|
|
ColorVal UIColor::title_bkg = 1;
|
|
ColorVal UIColor::title_txt = 0;
|
|
ColorVal UIColor::primary_txt = 1;
|
|
ColorVal UIColor::secondary_txt = 1;
|
|
ColorVal UIColor::warning_txt = 1;
|
|
ColorVal UIColor::popup_bkg = 1;
|
|
ColorVal UIColor::popup_txt = 0;
|
|
ColorVal UIColor::corp_blue = 1;
|
|
|