This commit is contained in:
Z8Griz 2025-03-28 15:47:15 +03:00 committed by GitHub
commit 7faa050bfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,12 @@
// Credit: Z8Griz
public CBGR24 gr_palette_bluerosaceae[COLORS_NUM] = {
0x957599, 0x859BCD, 0x999980, 0xC5D0E9, 0x757C8B, 0xBE6262, 0xADC9D7, 0x3A273A, 0x555676, 0x67BBEB, 0xB8DC7E, 0xB8DC7E, 0xBE6262, 0xD9B0E7, 0xFFC7A3, 0x150E13,
};
public U0 PaletteSetBlueRosaceae(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_bluerosaceae);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetBlueRosaceae;
}

View file

@ -0,0 +1,12 @@
// Credit: Z8Griz
public CBGR24 gr_palette_colorrosaceae[COLORS_NUM] = {
0x957599, 0x859BCD, 0x999980, 0x84A8FF, 0x757C8B, 0xEBB660, 0x65944B, 0x3A273A, 0x555676, 0x67BBEB, 0xB8DC7E, 0xCC80BB, 0xBE6262, 0xE1B0B7, 0xFFC7A3, 0x150E13,
};
public U0 PaletteSetColorRosaceae(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_colorrosaceae);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetColorRosaceae;
}

View file

@ -0,0 +1,11 @@
// Credit: Tsoding - from TempleOS AoC 2021 Stream -- Modified: Z8Griz
public CBGR24 gr_palette_gruvboxdark[COLORS_NUM] = {
0xEBDBB2, 0x458588, 0x98971A, 0x689D6A, 0xCC241D, 0xB16286, 0xFE8019, 0x3C3836, 0x504945, 0x83A598, 0xB8BB26, 0x8EC07C, 0xFB4934, 0xD3869B, 0xFABD2F, 0x282828
};
public U0 PaletteSetGruvboxdark(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_gruvboxdark);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetGruvboxdark;
}

View file

@ -0,0 +1,12 @@
// Credit: bubstance -- Modified and changed name for reasons: Z8Griz
public CBGR24 gr_palette_kindle[COLORS_NUM] = {
0xC2C2B0, 0x808080, 0xADADAD, 0xCCCCCC, 0x5F5F87, 0xA8A8A8, 0xE6E6E6, 0x4D4D4D, 0xBFBFBF, 0x808080, 0x424242, 0xCCCCCC, 0x5F5F87, 0xA8A8A8, 0x666666, 0x1C1C1C
};
public U0 PaletteSetKindle(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_kindle);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetKindle;
}

View file

@ -0,0 +1,11 @@
// Credit: bubstance -- Modified: Z8Griz
public CBGR24 gr_palette_Rosepine[COLORS_NUM] = {
0xE0DEF4, 0x286983, 0x9CCFD8, 0xEBBCBA, 0xEB6F92, 0x907AA9, 0xB4637A, 0x393552, 0x6E6A86, 0x9893A5, 0x56949F, 0xEA9A97, 0xD7827E, 0xC4A7E7, 0xF6C177, 0x191724
};
public U0 PaletteSetRosepine(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_Rosepine);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetRosepine;
}