ansi4j
ansi4j copied to clipboard
ANSI4J is a library that includes Java parser for processing text with ANSI escape codes (ISO/IEC 6429 control functions) and a CSS generator for styling the text.
At the moment when TextAttributeConfig is created concrete colors are used: ``` int fgColor = 0xffffff; int bgColor = 0x000000; attributeConfig = new DefaultTextAttributeConfig.Builder() .defaultForegroundColor(fgColor) .defaultBackgroundColor(bgColor) .extraColorsEnabled(true) .palette16(palette) .build(); ```...
There is UNSUPPORTED_DEFAULT_VALUE with default access modifier that is not used.
`Css3Generator` should be renamed to `WebCssGenerator` or `HtmlCssGenerator`.