Skip to content

Commit

Permalink
adjust colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvink committed Apr 15, 2024
1 parent 92c21ac commit efef186
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ ce_editor_loop(void)

if (splash) {
level = ce_game_level();
ce_term_foreground_rgb(52, 119, 115);
ce_term_foreground_rgb(64, 64, 64);
ce_term_writestr(TERM_SEQUENCE_CURSOR_SAVE);
editor_splash_text(0, CE_SPLASH_TEXT_1);
editor_splash_text(1, CE_SPLASH_TEXT_2);
Expand Down Expand Up @@ -1060,7 +1060,7 @@ editor_draw_status(void)
ce_term_setpos(ce_term_height() - 1, TERM_CURSOR_MIN);
ce_term_writestr(TERM_SEQUENCE_LINE_ERASE);
ce_term_color(TERM_COLOR_WHITE + TERM_COLOR_FG);
ce_term_background_rgb(52, 119, 115);
ce_term_background_rgb(64, 64, 64);
ce_term_writef(" %s %s", &fline[cmdoff], sline);

if ((size_t)(slen + flen) < (ce_term_width() - llen)) {
Expand Down
2 changes: 1 addition & 1 deletion syntax.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ ce_syntax_write(struct cebuf *buf, struct celine *line, size_t index,
tabstart = ">";
syntax_state_term_bold(&syntax_state, 0);
syntax_state_foreground_color(&syntax_state,
192, 192, 192);
64, 64, 64);
} else {
tabpos = " ";
tabstart = " ";
Expand Down

0 comments on commit efef186

Please sign in to comment.