mirror of
https://github.com/whowechina/bishi_pico.git
synced 2026-09-22 22:38:22 +03:00
Come on baby Steam theme added
This commit is contained in:
Binary file not shown.
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user