Skip to content

Commit

Permalink
Latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbrianhall committed Dec 23, 2024
1 parent 7553119 commit d08eaaf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions c/wizardio.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,31 @@ void capitalize_sentences(char *str);

char get_user_input_custom_prompt(char *prompt);

#define NUM_THEMES 8
static const char* themes[] = {
// Standard black on white
"\033]10;#000000\007\033]11;#FFFFFF\007",
// White on blue (classic IBM look)
"\033]10;#FFFFFF\007\033]11;#0000AA\007",

// Commodore 64 (light blue on dark blue)
"\033]10;#6C9CF9\007\033]11;#0B0B79\007",
// Matrix (bright green on black)
"\033]10;#00FF00\007\033]11;#000000\007",

// Amber monochrome
"\033]10;#FFB000\007\033]11;#000000\007",

// Solarized Dark
"\033]10;#839496\007\033]11;#002B36\007",

// Dracula
"\033]10;#F8F8F2\007\033]11;#282A36\007",

// Nord
"\033]10;#D8DEE9\007\033]11;#2E3440\007"
};

#ifdef __cplusplus
}
#endif
Expand Down

0 comments on commit d08eaaf

Please sign in to comment.