Come on baby Steam theme added

This commit is contained in:
whowechina
2026-08-09 13:17:25 +08:00
parent ebeb901536
commit e881006eb2
3 changed files with 25 additions and 2 deletions
Binary file not shown.
+2 -2
View File
@@ -151,7 +151,7 @@ static void handle_spin(int argc, char *argv[])
static void handle_theme(int argc, char *argv[])
{
const char *usage = "Usage: theme [<0|1|2|3|4|5>]\n";
const char *usage = "Usage: theme [0..6]\n";
if (argc == 0) {
theme_list_print();
return;
@@ -163,7 +163,7 @@ static void handle_theme(int argc, char *argv[])
}
int theme = cli_extract_non_neg_int(argv[0], 0);
if ((theme < 0) || (theme > 5)) {
if ((theme < 0) || (theme > 6)) {
printf(usage);
return;
}
+23
View File
@@ -188,6 +188,29 @@ static struct {
},
},
},
{
"Come on Baby Steam",
0x0c,
{
{ },
{
{ { YELLOW, 255, 255 }, { BLUE, 255, 128 }, { GREEN, 255, 128 }, { 0 }, { RED, 255, 128 }, },
{ { YELLOW, 255, 255 }, { BLUE, 255, 255 }, { GREEN, 255, 255 }, { 0 }, { RED, 255, 255 }, },
},
{
{ { CYAN, 255, 255 }, { BLUE, 255, 128 }, { GREEN, 255, 128 }, { 0 }, { RED, 255, 128 }, },
{ { CYAN, 255, 255 }, { BLUE, 255, 255 }, { GREEN, 255, 255 }, { 0 }, { RED, 255, 255 }, },
},
{
{ { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, },
{ { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, },
},
{
{ { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, },
{ { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, },
},
},
},
};
#define THEME_NUM count_of(light_theme)