Uses of Enum
org.aesh.readline.terminal.formatting.Color
Packages that use Color
-
Uses of Color in org.aesh.readline.cursor
Methods in org.aesh.readline.cursor with parameters of type ColorModifier and TypeMethodDescription -
Uses of Color in org.aesh.readline.terminal.formatting
Subclasses with type arguments of type Color in org.aesh.readline.terminal.formattingMethods in org.aesh.readline.terminal.formatting that return ColorModifier and TypeMethodDescriptionstatic ColorReturns the enum constant of this type with the specified name.static Color[]Color.values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.aesh.readline.terminal.formatting with parameters of type ColorModifierConstructorDescriptionTerminalColor(int text, Color background) 0x00-0x07: standard colors (as in ESC [ 30..37 m) 0x08-0x0f: high intensity colors (as in ESC [ 90..97 m) 0x10-0xe7: 6*6*6=216 colors: 16 + 36*r + 6*g + b (0≤r,g,b≤5) 0xe8-0xff: grayscale from black to white in 24 stepsTerminalColor(int text, Color background, Color.Intensity intensity) TerminalColor(Color text, int background) TerminalColor(Color text, int background, Color.Intensity intensity) TerminalColor(Color text, Color background) TerminalColor(Color textColor, Color background, Color.Intensity intensity)