mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 21:57:41 -05:00
23 lines
883 B
C
23 lines
883 B
C
#pragma once
|
|
|
|
#include "colors.h"
|
|
|
|
static const unsigned int COLOR_TEXT = DISPLAY_WHITE;
|
|
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;
|
|
|
|
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;
|
|
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_GREEN;
|