From cb7159b491d1d1895dc27880a308c24f67b2395d Mon Sep 17 00:00:00 2001 From: Joshua Taylor Date: Mon, 9 Dec 2024 15:36:17 -0600 Subject: [PATCH 1/3] Replace API with Neo --- src/html/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/html/index.html b/src/html/index.html index b939a35..8841174 100644 --- a/src/html/index.html +++ b/src/html/index.html @@ -188,12 +188,12 @@

SpongeForge

Download

Recommended for running plugins together with Forge mods.

-

SpongeAPI

-

SpongeAPI is the tool developers use to create plugins for the Sponge +

SpongeNeo

+

SpongeNeo is the implementation of the Sponge API on the NeoForge platform.

- + Download -

Recommended for plugin developers.

+

Recommended for running plugins together with NeoForge mods.

From 67de0edd2b2561d5e58abd0250f522533b19942c Mon Sep 17 00:00:00 2001 From: Joshua Taylor Date: Mon, 9 Dec 2024 15:37:46 -0600 Subject: [PATCH 2/3] Add neo css Sharing color as API for now --- src/scss/_downloads.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/scss/_downloads.scss b/src/scss/_downloads.scss index ec0d2c3..08269b0 100644 --- a/src/scss/_downloads.scss +++ b/src/scss/_downloads.scss @@ -88,4 +88,8 @@ &.spongeapi { background-color: #009172; } + + &.spongeneo { + background-color: #009172; + } } From 9fe9646c4c650e1c169f4d291c457a39eded1e0d Mon Sep 17 00:00:00 2001 From: Joshua Taylor Date: Mon, 9 Dec 2024 15:49:38 -0600 Subject: [PATCH 3/3] Match neo color to same as downloads page --- src/scss/_downloads.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/_downloads.scss b/src/scss/_downloads.scss index 08269b0..4946ee2 100644 --- a/src/scss/_downloads.scss +++ b/src/scss/_downloads.scss @@ -90,6 +90,6 @@ } &.spongeneo { - background-color: #009172; + background-color: #cc6f2f; } }