diff options
| author | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-05-07 13:04:28 +0100 |
|---|---|---|
| committer | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-05-07 13:04:28 +0100 |
| commit | d76f7508efc75c050d8703787652bac2de6537a1 (patch) | |
| tree | c95f1f2b23fc0e33ad5d5f405c6b3be5b73aa89d /src/main/java/cc/polyfrost/oneconfig/config | |
| parent | 80e344c9506749e5ed3960a102cee1c1ec32a60f (diff) | |
| download | OneConfig-d76f7508efc75c050d8703787652bac2de6537a1.tar.gz OneConfig-d76f7508efc75c050d8703787652bac2de6537a1.tar.bz2 OneConfig-d76f7508efc75c050d8703787652bac2de6537a1.zip | |
start on color selector
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/config')
| -rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java b/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java index 73f5821..0fe06ab 100644 --- a/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java +++ b/src/main/java/cc/polyfrost/oneconfig/config/OneConfigConfig.java @@ -17,6 +17,7 @@ public class OneConfigConfig extends Config { // TODO i dont know how this works so this is just gonna be here for now public static final int TRANSPARENT = new Color(0, 0, 0, 0).getRGB(); // Transparent // button sidebar normal + public static final int BLACK = new Color(0,0,0,255).getRGB(); // Black public static final int GRAY_900 = new Color(13, 14, 15, 255).getRGB(); // Gray 900 public static final int GRAY_900_80 = new Color(13, 14, 15, 204).getRGB(); // Gray 900 80% public static final int GRAY_800 = new Color(21, 22, 23, 255).getRGB(); // Gray 800 |
