Smallcase folders part 1
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
|
||||
#include "Display/Graphics/Color.h"
|
||||
#include "Display/UI/Theme/Theme.h"
|
||||
|
||||
namespace display::ui::bar
|
||||
{
|
||||
struct Style
|
||||
{
|
||||
display::graphics::Color background;
|
||||
display::graphics::Color fill;
|
||||
display::graphics::Color border;
|
||||
bool drawBorder;
|
||||
|
||||
Style(
|
||||
display::graphics::Color background = display::ui::theme::bar::BACKGROUND,
|
||||
display::graphics::Color fill = display::ui::theme::bar::FILL,
|
||||
display::graphics::Color border = display::ui::theme::bar::BORDER,
|
||||
bool drawBorder = true)
|
||||
: background(background),
|
||||
fill(fill),
|
||||
border(border),
|
||||
drawBorder(true)
|
||||
{
|
||||
}
|
||||
};
|
||||
} // namespace display::ui::bar
|
||||
Reference in New Issue
Block a user