#include <memory>
#include <utility>
#include <vector>
#include "./color_info_sorted_2d.ipp"
int main(int argc, const char* argv[]) {
auto basic_color_display =
text(
"16 color palette:"),
),
)
)
);
auto palette_256_color_display =
text(
"256 colors palette:");
{
std::vector<std::vector<ColorInfo>> info_columns = ColorInfoSorted2D();
for (auto& column : info_columns) {
for (auto& it : column) {
column_elements.push_back(
}
columns.push_back(
hbox(std::move(column_elements)));
}
palette_256_color_display =
vbox({
palette_256_color_display,
});
}
auto true_color_display =
text(
"TrueColors: 24bits:");
{
int saturation = 255;
for (int value = 0; value < 255; value += 16) {
for (int hue = 0; hue < 255; hue += 6) {
}
array.push_back(
hbox(std::move(line)));
}
true_color_display =
vbox({
true_color_display,
});
}
auto terminal_info =
?
text(
" 16 color palette support : Yes")
:
text(
" 16 color palette support : No"),
?
text(
"256 color palette support : Yes")
:
text(
"256 color palette support : No"),
?
text(
" True color support : Yes")
:
text(
" True color support : No"),
}) |
basic_color_display,
palette_256_color_display,
true_color_display,
}),
terminal_info});
screen.Print();
return 0;
}