Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/Home/PaletteEditor/Palettes/BlueRosaceae.ZC
Original file line number Diff line number Diff line change
@@ -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,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is hardly any difference between Blue and Color rosaceae.
But personally i think the color one is better.


};
public U0 PaletteSetBlueRosaceae(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_bluerosaceae);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetBlueRosaceae;
}
12 changes: 12 additions & 0 deletions src/Home/PaletteEditor/Palettes/ColorRosaceae.ZC
Original file line number Diff line number Diff line change
@@ -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;
}
11 changes: 11 additions & 0 deletions src/Home/PaletteEditor/Palettes/Gruvboxdark.ZC
Original file line number Diff line number Diff line change
@@ -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;
}
Comment on lines +2 to +11
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

12 changes: 12 additions & 0 deletions src/Home/PaletteEditor/Palettes/Kindle.ZC
Original file line number Diff line number Diff line change
@@ -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;
}

11 changes: 11 additions & 0 deletions src/Home/PaletteEditor/Palettes/Rosepine.ZC
Original file line number Diff line number Diff line change
@@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

};
public U0 PaletteSetRosepine(Bool persistent=TRUE)
{
GrPaletteSet(gr_palette_Rosepine);
LFBFlush;
if (persistent)
fp_set_std_palette = &PaletteSetRosepine;
}