Package MySTARS
Class ConsoleColours
java.lang.Object
MySTARS.ConsoleColours
public final class ConsoleColours
extends java.lang.Object
ConsoleColours which are to be used in the MySTARS App.
Adapted from https://stackoverflow.com/questions/5762491/how-to-print-color-in-console-using-system-out-println.
- Since:
- 2020-11-1
- Version:
- 1.0
- Author:
- Bhargav
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringBLACKBlack text.static java.lang.StringBLACK_BOLDBlack bold text.static java.lang.StringBLACK_BRIGHTBlack bright text.static java.lang.StringBLUEBlue text.static java.lang.StringBLUE_BOLDBlue bold text.static java.lang.StringBLUE_BRIGHTBlue bright text.static java.lang.StringCYANCyan text.static java.lang.StringCYAN_BOLDCyan bold text.static java.lang.StringCYAN_BRIGHTCyan bright text.static java.lang.StringGREENGreen text.static java.lang.StringGREEN_BOLDGreen bold text.static java.lang.StringGREEN_BRIGHTGreen bright text.static java.lang.StringPURPLEPurple text.static java.lang.StringPURPLE_BOLDPurple bold text.static java.lang.StringPURPLE_BRIGHTPurple bright text.static java.lang.StringREDRed text.static java.lang.StringRED_BOLDRed bold text.static java.lang.StringRED_BRIGHTRed bright text.static java.lang.StringRESETReset the color.static java.lang.StringWHITEWhite text.static java.lang.StringWHITE_BOLDWhite bold text.static java.lang.StringWHITE_BRIGHTWhite bright text.static java.lang.StringYELLOWYellow text.static java.lang.StringYELLOW_BOLDYellow bold text.static java.lang.StringYELLOW_BRIGHTYellow bright text. -
Constructor Summary
Constructors Constructor Description ConsoleColours() -
Method Summary
-
Field Details
-
RESET
public static final java.lang.String RESETReset the color.- See Also:
- Constant Field Values
-
BLACK
public static final java.lang.String BLACKBlack text.- See Also:
- Constant Field Values
-
RED
public static final java.lang.String REDRed text.- See Also:
- Constant Field Values
-
GREEN
public static final java.lang.String GREENGreen text.- See Also:
- Constant Field Values
-
YELLOW
public static final java.lang.String YELLOWYellow text.- See Also:
- Constant Field Values
-
BLUE
public static final java.lang.String BLUEBlue text.- See Also:
- Constant Field Values
-
PURPLE
public static final java.lang.String PURPLEPurple text.- See Also:
- Constant Field Values
-
CYAN
public static final java.lang.String CYANCyan text.- See Also:
- Constant Field Values
-
WHITE
public static final java.lang.String WHITEWhite text.- See Also:
- Constant Field Values
-
BLACK_BOLD
public static final java.lang.String BLACK_BOLDBlack bold text.- See Also:
- Constant Field Values
-
RED_BOLD
public static final java.lang.String RED_BOLDRed bold text.- See Also:
- Constant Field Values
-
GREEN_BOLD
public static final java.lang.String GREEN_BOLDGreen bold text.- See Also:
- Constant Field Values
-
YELLOW_BOLD
public static final java.lang.String YELLOW_BOLDYellow bold text.- See Also:
- Constant Field Values
-
BLUE_BOLD
public static final java.lang.String BLUE_BOLDBlue bold text.- See Also:
- Constant Field Values
-
PURPLE_BOLD
public static final java.lang.String PURPLE_BOLDPurple bold text.- See Also:
- Constant Field Values
-
CYAN_BOLD
public static final java.lang.String CYAN_BOLDCyan bold text.- See Also:
- Constant Field Values
-
WHITE_BOLD
public static final java.lang.String WHITE_BOLDWhite bold text.- See Also:
- Constant Field Values
-
BLACK_BRIGHT
public static final java.lang.String BLACK_BRIGHTBlack bright text.- See Also:
- Constant Field Values
-
RED_BRIGHT
public static final java.lang.String RED_BRIGHTRed bright text.- See Also:
- Constant Field Values
-
GREEN_BRIGHT
public static final java.lang.String GREEN_BRIGHTGreen bright text.- See Also:
- Constant Field Values
-
YELLOW_BRIGHT
public static final java.lang.String YELLOW_BRIGHTYellow bright text.- See Also:
- Constant Field Values
-
BLUE_BRIGHT
public static final java.lang.String BLUE_BRIGHTBlue bright text.- See Also:
- Constant Field Values
-
PURPLE_BRIGHT
public static final java.lang.String PURPLE_BRIGHTPurple bright text.- See Also:
- Constant Field Values
-
CYAN_BRIGHT
public static final java.lang.String CYAN_BRIGHTCyan bright text.- See Also:
- Constant Field Values
-
WHITE_BRIGHT
public static final java.lang.String WHITE_BRIGHTWhite bright text.- See Also:
- Constant Field Values
-
-
Constructor Details
-
ConsoleColours
public ConsoleColours()
-