Skip to content

Commit d286350

Browse files
committed
girly theme :3
1 parent 225ebae commit d286350

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

mod.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"Green",
7474
"Dark",
7575
"Light",
76+
"Girlypop",
7677
"Aqua",
7778
"Geode"
7879
]

src/Utils.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ namespace horrible {
5353
inline constexpr auto Green = "Green";
5454
inline constexpr auto Dark = "Dark";
5555
inline constexpr auto Light = "Light";
56+
inline constexpr auto Girlypop = "Girlypop";
5657
inline constexpr auto Aqua = "Aqua";
5758
inline constexpr auto Geode = "Geode";
5859
};
@@ -63,8 +64,8 @@ namespace horrible {
6364
if (theme == enums::Green) return "GJ_square03.png";
6465
if (theme == enums::Dark) return "GJ_square05.png";
6566
if (theme == enums::Light) return "geode.loader/white-square.png";
67+
if (theme == enums::Girlypop) return "GJ_square04.png";
6668
if (theme == enums::Aqua) return "geode.loader/GE_square03.png";
67-
6869
if (theme == enums::Geode) return "geode.loader/GE_square01.png";
6970

7071
return "GJ_square01.png";
@@ -76,8 +77,8 @@ namespace horrible {
7677
if (theme == enums::Green) return geode::CircleBaseColor::Green;
7778
if (theme == enums::Dark) return geode::CircleBaseColor::Gray;
7879
if (theme == enums::Light) return geode::CircleBaseColor::Gray;
80+
if (theme == enums::Girlypop) return geode::CircleBaseColor::Pink;
7981
if (theme == enums::Aqua) return geode::CircleBaseColor::DarkAqua;
80-
8182
if (theme == enums::Geode) return geode::CircleBaseColor::DarkPurple;
8283

8384
return geode::CircleBaseColor::Green;
@@ -89,8 +90,8 @@ namespace horrible {
8990
if (theme == enums::Green) return "GJ_button_01.png";
9091
if (theme == enums::Dark) return "GJ_button_05.png";
9192
if (theme == enums::Light) return "GJ_button_04.png";
93+
if (theme == enums::Girlypop) return "GJ_button_03.png";
9294
if (theme == enums::Aqua) return "geode.loader/GE_button_05.png";
93-
9495
if (theme == enums::Geode) return "geode.loader/GE_button_05.png";
9596

9697
return "GJ_button_01.png";

src/menu/src/OptionMenu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ bool OptionMenu::init() {
204204
};
205205

206206
for (auto const& filterBtn : filterBtns) {
207-
if (auto btnSprite = ButtonSprite::create(filterBtn.label, 150, true, "bigFont.fnt", theme::getButtonSquareSprite(m_impl->theme), 0.f, 0.8f)) {
207+
if (auto btnSprite = ButtonSprite::create(filterBtn.label, 155, true, "bigFont.fnt", theme::getButtonSquareSprite(m_impl->theme), 0.f, 0.8f)) {
208208
btnSprite->m_label->setColor(filterBtn.color);
209209
btnSprite->setScale(0.8f);
210210

0 commit comments

Comments
 (0)