diff options
Diffstat (limited to 'src/engine/data/style.hpp')
-rw-r--r-- | src/engine/data/style.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/engine/data/style.hpp b/src/engine/data/style.hpp new file mode 100644 index 0000000..50c1faa --- /dev/null +++ b/src/engine/data/style.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include <cstdint> +#include <optional> + +class Style +{ +public: + // Colors + std::optional<uint32_t> fg_color{}; + std::optional<uint32_t> bg_color{}; + + // Toggles + bool bold = false; + bool reset_before = false; + + // Spacing + uint32_t padding_left = 0U; + uint32_t padding_right = 0U; +}; |