Smallcase folders part 1

This commit is contained in:
2025-12-29 13:39:40 +00:00
parent ae48f96fe8
commit 8bef59f793
84 changed files with 40 additions and 35 deletions
+35
View File
@@ -0,0 +1,35 @@
#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};
} // 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};
} // namespace bar
} // namespace display::ui::theme