mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
17 lines
560 B
C++
17 lines
560 B
C++
#ifndef ESCHER_PALETTE_H
|
|
#define ESCHER_PALETTE_H
|
|
|
|
#include <kandinsky/color.h>
|
|
|
|
class Palette {
|
|
public:
|
|
constexpr static KDColor LineColor = KDColor::RGB24(0xB4B7B9);
|
|
constexpr static KDColor BackgroundColor = KDColor::RGB24(0xF0F3F5);
|
|
constexpr static KDColor CellBackgroundColor = KDColor::RGB24(0xFCFCFC);
|
|
constexpr static KDColor FocusCellBackgroundColor = KDColor::RGB24(0xBFD3EB);
|
|
constexpr static KDColor DesactiveTextColor = KDColor::RGB24(0x646464);
|
|
constexpr static KDColor BoxTitleBackgroundColor = KDColor::RGB24(0x656976);
|
|
};
|
|
|
|
#endif
|