2020-02-10 00:56:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "colors.h"
|
|
|
|
|
|
|
|
static const unsigned int COLOR_TEXT = DISPLAY_WHITE;
|
2021-05-17 17:29:57 +02:00
|
|
|
static const unsigned int COLOR_BACKGROUND = DISPLAY_BLACK;
|
2020-02-10 00:56:43 +01:00
|
|
|
|
|
|
|
static const unsigned int COLOR_ACTIVE_VFO_TEXT = DISPLAY_WHITE;
|
|
|
|
static const unsigned int COLOR_ACTIVE_VFO_BACKGROUND = DISPLAY_BLACK;
|
|
|
|
|
|
|
|
static const unsigned int COLOR_INACTIVE_VFO_TEXT = DISPLAY_GREEN;
|
|
|
|
static const unsigned int COLOR_INACTIVE_VFO_BACKGROUND = DISPLAY_BLACK;
|
|
|
|
|
|
|
|
static const unsigned int COLOR_INACTIVE_TEXT = DISPLAY_GREEN;
|
|
|
|
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;
|
2021-05-17 17:29:57 +02:00
|
|
|
static const unsigned int COLOR_ACTIVE_BACKGROUND = DISPLAY_GREEN;
|
2020-02-10 00:56:43 +01:00
|
|
|
static const unsigned int COLOR_ACTIVE_BORDER = DISPLAY_WHITE;
|
|
|
|
|
2021-05-17 17:29:57 +02:00
|
|
|
static const unsigned int COLOR_VERSION_TEXT = DISPLAY_GREEN;
|