pop_os and void linux color correction

This commit is contained in:
2026-05-25 20:54:54 +03:00
parent 8dd27b7d36
commit 0b07013eeb
+3 -3
View File
@@ -388,7 +388,7 @@ std::vector<string> distroArt() {
}, },
{ {
"pop", "pop",
Color::Purple, Color::Cyan,
{ {
"______ ", "______ ",
"\\ _ \\ __", "\\ _ \\ __",
@@ -428,7 +428,7 @@ std::vector<string> distroArt() {
}, },
{ {
"void", "void",
Color::Gray, Color::Green,
{ {
" ____ ", " ____ ",
" 'pfPfp.% ", " 'pfPfp.% ",
@@ -458,7 +458,7 @@ std::vector<string> distroArt() {
std::vector<string> out; std::vector<string> out;
for (const auto& logo : logos) { for (const auto& logo : logos) {
if (logo.id == "alpine") { if (logo.id == distroID) {
const string prefix = color(logo.color); const string prefix = color(logo.color);
const string suffix = color(Color::Reset); const string suffix = color(Color::Reset);
for (const auto& line : logo.art) { for (const auto& line : logo.art) {