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.String
BLACK
Black text.static java.lang.String
BLACK_BOLD
Black bold text.static java.lang.String
BLACK_BRIGHT
Black bright text.static java.lang.String
BLUE
Blue text.static java.lang.String
BLUE_BOLD
Blue bold text.static java.lang.String
BLUE_BRIGHT
Blue bright text.static java.lang.String
CYAN
Cyan text.static java.lang.String
CYAN_BOLD
Cyan bold text.static java.lang.String
CYAN_BRIGHT
Cyan bright text.static java.lang.String
GREEN
Green text.static java.lang.String
GREEN_BOLD
Green bold text.static java.lang.String
GREEN_BRIGHT
Green bright text.static java.lang.String
PURPLE
Purple text.static java.lang.String
PURPLE_BOLD
Purple bold text.static java.lang.String
PURPLE_BRIGHT
Purple bright text.static java.lang.String
RED
Red text.static java.lang.String
RED_BOLD
Red bold text.static java.lang.String
RED_BRIGHT
Red bright text.static java.lang.String
RESET
Reset the color.static java.lang.String
WHITE
White text.static java.lang.String
WHITE_BOLD
White bold text.static java.lang.String
WHITE_BRIGHT
White bright text.static java.lang.String
YELLOW
Yellow text.static java.lang.String
YELLOW_BOLD
Yellow bold text.static java.lang.String
YELLOW_BRIGHT
Yellow 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()
-