feat: Add an orange color to the fteapot default palette

This commit is contained in:
Glen Whitney 2023-04-09 10:05:24 -04:00
parent 034ad0a201
commit 0547bdc9f6
1 changed files with 1 additions and 0 deletions

View File

@ -1078,6 +1078,7 @@ Function
palt[c++] = FL_DARK_BLUE; SKIPDEFCOLS(c);
palt[c++] = FL_DARK_MAGENTA; SKIPDEFCOLS(c);
palt[c++] = FL_DARK_CYAN; SKIPDEFCOLS(c);
palt[c++] = fl_rgb_color(255, 165, 0); SKIPDEFCOLS(c); // orange
palt[c++] = FL_WHITE; SKIPDEFCOLS(c);
while (c < sheet->max_colors) { palt[c++] = FL_WHITE; SKIPDEFCOLS(c); }
} {} }