From 6239cf215a789a21e702cb793706ca0fa5a4bcca Mon Sep 17 00:00:00 2001 From: nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> Date: Sat, 11 Jun 2022 11:16:01 +0100 Subject: Slideyboi, a couple fixes, replace print calls and test feature --- src/main/java/cc/polyfrost/oneconfig/internal/assets/Colors.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/main/java/cc/polyfrost/oneconfig/internal/assets') diff --git a/src/main/java/cc/polyfrost/oneconfig/internal/assets/Colors.java b/src/main/java/cc/polyfrost/oneconfig/internal/assets/Colors.java index a8d1e72..49a4ca3 100644 --- a/src/main/java/cc/polyfrost/oneconfig/internal/assets/Colors.java +++ b/src/main/java/cc/polyfrost/oneconfig/internal/assets/Colors.java @@ -15,6 +15,7 @@ public class Colors { 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 + public static final int GRAY_400_60 = new Color(55, 59, 69, 153).getRGB(); // Gray 400 60% public static final int GRAY_300 = new Color(73, 79, 92, 255).getRGB(); // Gray 300 // button gray hover public static final int GRAY_400_80 = new Color(55, 59, 69, 204).getRGB(); // Gray 400 80% // button gray pressed public static final int PRIMARY_800 = new Color(13, 51, 128, 255).getRGB(); // Blue 800 @@ -23,11 +24,11 @@ public class Colors { public static final int PRIMARY_600 = new Color(20, 82, 204, 255).getRGB(); // Blue 600 // button blue normal public static final int PRIMARY_500 = new Color(25, 103, 255, 255).getRGB(); // Blue 500 // button blue hover public static final int PRIMARY_400 = new Color(48, 129, 242, 255).getRGB(); - public static final int WHITE_50 = new Color(255, 255, 255, 127).getRGB(); // White 60% + public static final int WHITE_50 = new Color(255, 255, 255, 127).getRGB(); // White 50% public static final int WHITE_60 = new Color(255, 255, 255, 153).getRGB(); // White 60% public static final int WHITE_80 = new Color(255, 255, 255, 204).getRGB(); // White 80% public static final int WHITE_90 = new Color(255, 255, 255, 229).getRGB(); // White 90% - public static final int WHITE_95 = new Color(255, 255, 255, 242).getRGB(); // White 90% + public static final int WHITE_95 = new Color(255, 255, 255, 242).getRGB(); // White 95% public static final int WHITE = new Color(255, 255, 255, 255).getRGB(); // White 100% public static final int SUCCESS_600 = new Color(3, 152, 85).getRGB(); public static final int SUCCESS_700 = new Color(2, 121, 72).getRGB(); -- cgit