29 lines
531 B
C++
29 lines
531 B
C++
#include <psemek/ui/style.hpp>
|
|
|
|
namespace psemek::ui
|
|
{
|
|
|
|
style default_style()
|
|
{
|
|
style s;
|
|
s.bg_color = {95, 95, 95, 255};
|
|
s.fg_color = {127, 127, 127, 255};
|
|
s.highlight_color = {159, 159, 159, 255};
|
|
s.action_color = {63, 63, 63, 255};
|
|
|
|
s.border_color = {255, 255, 255, 255};
|
|
s.border_width = 3;
|
|
|
|
s.shadow_offset = {1, 1};
|
|
s.shadow_color = {0, 0, 0, 255};
|
|
|
|
s.inner_margin = 5;
|
|
s.outer_margin = 10;
|
|
|
|
s.text_color = {255, 255, 255, 255};
|
|
s.text_scale = 1;
|
|
s.text_shadow_offset = {1, 1};
|
|
return s;
|
|
}
|
|
|
|
}
|