7#include "../required.hpp"
8#include "../assert.hpp"
14enum class theme_mode {
19[[nodiscard]]
constexpr char const *to_const_string(theme_mode rhs)
noexcept {
21 case theme_mode::light:
return "light";
22 case theme_mode::dark:
return "dark";
23 default: tt_no_default();
28 return to_const_string(rhs);
32 return lhs << to_const_string(rhs);
36theme_mode read_os_theme_mode() noexcept;