Browse Source

refactoring: Added comment to Color

remotes/origin/develop
David Hermann 2 years ago
parent
commit
460fc71570
  1. 6
      src/main/java/org/bitbiome/classes/Colors.java

6
src/main/java/org/bitbiome/classes/Colors.java

@ -2,6 +2,12 @@ package org.bitbiome.classes;
public class Colors { public class Colors {
/*
* This class has only public static mehtods
* Just add a String to your String and finalize it with the ANSI_RESET String
* The Color Codes with BG in the variable name are for the background colors
*/
public static final String ANSI_RESET = "\u001B[0m"; public static final String ANSI_RESET = "\u001B[0m";
public static final String ANSI_BLACK = "\u001B[30m"; public static final String ANSI_BLACK = "\u001B[30m";

Loading…
Cancel
Save