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.
20 lines
471 B
20 lines
471 B
#pragma once
|
|
#include "dwin_screen.hpp"
|
|
#include "text_displayer.hpp"
|
|
#include "var_icon.hpp"
|
|
|
|
namespace iflytop {
|
|
namespace dwin {
|
|
typedef enum {
|
|
kdwin_color_green = 0x1694, // kgreen
|
|
kdwin_color_red = 0xF800, // kred
|
|
kdwin_color_orange = 0xFC60, // orange
|
|
kdwin_color_blue = 0x12DC, // kblue
|
|
} dwin_color_t;
|
|
|
|
#define kblue kdwin_color_blue
|
|
#define kred kdwin_color_red
|
|
#define kgreen kdwin_color_green
|
|
|
|
} // namespace dwin
|
|
} // namespace iflytop
|