diff options
author | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-04-24 13:32:23 +0100 |
---|---|---|
committer | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-04-24 13:32:23 +0100 |
commit | 5417c7bd2d43c306863707bb91e7c88a651a696b (patch) | |
tree | 102088a05cf8dd9d772ceb619fa521ee952e68c0 /src/main/java/io/polyfrost/oneconfig/config | |
parent | a11a04cc1161a4ed55b85fa9bec877094f1e8e9d (diff) | |
download | OneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.tar.gz OneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.tar.bz2 OneConfig-5417c7bd2d43c306863707bb91e7c88a651a696b.zip |
mod cards, loading of mods, fixes, and some more stuff
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/config')
-rw-r--r-- | src/main/java/io/polyfrost/oneconfig/config/OneConfigConfig.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/config/OneConfigConfig.java b/src/main/java/io/polyfrost/oneconfig/config/OneConfigConfig.java index 04cc24f..3ebc876 100644 --- a/src/main/java/io/polyfrost/oneconfig/config/OneConfigConfig.java +++ b/src/main/java/io/polyfrost/oneconfig/config/OneConfigConfig.java @@ -25,7 +25,9 @@ public class OneConfigConfig extends Config { public static final int GRAY_500 = new Color(49, 51, 56, 255).getRGB(); // Gray 500 // button sidebar hover, button gray normal public static final int GRAY_500_80 = new Color(49, 51, 56, 204).getRGB(); // Gray 500 80% // button sidebar pressed - public static final int GRAY_400 = new Color(55, 59, 69, 255).getRGB(); // Gray 400 // button gray hover + public static final int GRAY_400 = new Color(55, 59, 69, 255).getRGB(); // Gray 400 + public static final int GRAY_300 = new Color(73, 79, 92, 255).getRGB(); // Gray 300 // button gray hover + public static final int GRAY_200 = new Color(100, 107, 125, 255).getRGB(); // Gray 200 public static final int GRAY_400_80 = new Color(55, 59, 69, 204).getRGB(); // Gray 400 80% // button gray pressed public static final int BLUE_700 = new Color(18, 71, 178, 255).getRGB(); // Blue 700 public static final int BLUE_600 = new Color(20, 82, 204, 255).getRGB(); // Blue 600 // button blue normal |