diff options
author | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-05-15 20:29:49 +0200 |
---|---|---|
committer | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-05-15 20:29:49 +0200 |
commit | 9521fb420ad494a9cbe0d3c439976fc842fa9194 (patch) | |
tree | 3bb55b01d7356f0c26c7991c574b675e481db6c7 /src/main/java/cc/polyfrost/oneconfig/config | |
parent | cb2f7c41420734142ec93fb66e1dfaac0944bcff (diff) | |
download | OneConfig-9521fb420ad494a9cbe0d3c439976fc842fa9194.tar.gz OneConfig-9521fb420ad494a9cbe0d3c439976fc842fa9194.tar.bz2 OneConfig-9521fb420ad494a9cbe0d3c439976fc842fa9194.zip |
new scaling logic and also some other stuff
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/config')
-rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java b/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java index 62ccd86..a590536 100644 --- a/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java +++ b/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java @@ -52,7 +52,14 @@ public class OneConfigConfig extends Config { public static final int WHITE_95 = new Color(255, 255, 255, 242).getRGB(); // White 90% public static final int WHITE = new Color(255, 255, 255, 255).getRGB(); // White 100% - public static final int ERROR_700 = new Color(180, 24, 24, 255).getRGB(); // Red 700 + public static final int SUCCESS_600 = new Color(3, 152, 85).getRGB(); + public static final int SUCCESS_700 = new Color(2, 121, 72).getRGB(); + + public static final int WARNING_500 = new Color(247, 144, 9).getRGB(); + public static final int WARNING_600 = new Color(220, 104, 3).getRGB(); + + public static final int ERROR_600 = new Color(217, 32, 32).getRGB(); + public static final int ERROR_700 = new Color(180, 24, 24).getRGB(); // Red 700 public static boolean ROUNDED_CORNERS = true; public static float CORNER_RADIUS_WIN = 20f; |