StreamStyle

enum StreamStyle : Enum<StreamStyle>

An abstraction of the styles of streams used by the workbench.

Parameters

light

The color of foreground text in this style for light mode.

dark

The color of foreground text in this style for dark mode.

Entries

Link copied to clipboard
BUILD_PROGRESS("build", Color(128, 96, 0), Color(220, 196, 87))

Progress updates produced by a build.

Link copied to clipboard
COMMAND("command", Color.MAGENTA, Color(174, 138, 190))

The stream style used to echo commands.

Link copied to clipboard
INFO("info", Color.BLUE, Color(83, 148, 236))

The stream style used to display informational text.

Link copied to clipboard
ERR("error", Color.RED, Color(255, 100, 88))

The stream style used to display error output.

Link copied to clipboard
OUT("output", Color.BLACK, Color(238, 238, 238))

The stream style used to display normal output.

Link copied to clipboard
IN_ECHO("input", Color(32, 144, 32), Color(55, 156, 26))

The stream style used to echo user input.

Functions

Link copied to clipboard
fun styleIn(doc: StyledDocument): Style

Extract this style from the given document. Look up my styleName.

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int