38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "display/graphics/Color.h"
|
|
|
|
namespace display::ui::theme
|
|
{
|
|
namespace text
|
|
{
|
|
const display::graphics::Color TEXT{220, 220, 220};
|
|
const display::graphics::Color OUTLINE{20, 20, 20};
|
|
const display::graphics::Color OFFLINE{100, 100, 100};
|
|
} // namespace text
|
|
|
|
namespace header
|
|
{
|
|
// ===== Header =====
|
|
const display::graphics::Color BACKGROUND{20, 20, 20};
|
|
const display::graphics::Color BORDER{60, 60, 60};
|
|
const display::graphics::Color HEADER{30, 30, 30};
|
|
} // namespace header
|
|
|
|
namespace hostblock
|
|
{
|
|
// ===== HostBlock =====
|
|
const display::graphics::Color BACKGROUND{20, 20, 20};
|
|
const display::graphics::Color BORDER{60, 60, 60};
|
|
const display::graphics::Color HEADER{30, 30, 30};
|
|
} // namespace hostblock
|
|
|
|
namespace bar
|
|
{
|
|
const display::graphics::Color BACKGROUND{30, 30, 30};
|
|
const display::graphics::Color FILL{0, 180, 0};
|
|
const display::graphics::Color BORDER{80, 80, 80};
|
|
const display::graphics::Color OFFLINE{60, 60, 60};
|
|
} // namespace bar
|
|
} // namespace display::ui::theme
|