Smallcase folders part 1
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user