Skip to content

Commit

Permalink
feat(batmanak): add tints to links
Browse files Browse the repository at this point in the history
  • Loading branch information
mqhaji authored and clshortfuse committed Dec 25, 2024
1 parent eb8c5fc commit 9c4f397
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/games/batmanak/addon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ renodx::utils::settings::Settings settings = {
.label = "More Mods",
.section = "Links",
.group = "button-line-1",
.tint = 0x2B3137,
.on_change = []() {
ShellExecute(0, "open", (std::string("https://github.com/") + "clshortfuse/renodx/wiki/Mods").c_str(), 0, 0, SW_SHOW);
},
Expand All @@ -368,6 +369,7 @@ renodx::utils::settings::Settings settings = {
.label = "Github",
.section = "Links",
.group = "button-line-1",
.tint = 0x2B3137,
.on_change = []() {
ShellExecute(0, "open", (std::string("https://github.com/") + "clshortfuse/renodx").c_str(), 0, 0, SW_SHOW);
},
Expand All @@ -377,7 +379,7 @@ renodx::utils::settings::Settings settings = {
.label = "ShortFuse's Ko-Fi",
.section = "Links",
.group = "button-line-1",
.tint = 0xFF5F5F,
.tint = 0xFF5A16,
.on_change = []() {
ShellExecute(0, "open", (std::string("https://ko-fi.com/") + "shortfuse").c_str(), 0, 0, SW_SHOW);
},
Expand Down

0 comments on commit 9c4f397

Please sign in to comment.