Color Options - touniez/comp402doc GitHub Wiki

Colors are defined similarly to HTML colors: as six hexadecimal digits preceded by a pound sign. The first two digits specify a red value, the next two specify a green value, and the next two specify a blue value. For example, #00FF00 would be a bright green. (In most cases, using the color chooser in the Preferences window is the simplest approach.)

Normal Color (definitions.normal.color = #000000)
Used as the default color for program text.

Keyword Color (definitions.keyword.color = #0000FF)
Used as the color for known keywords (eg. "public", "for").

Type Color (definitions.type.color = #00007C)
Used for known primitive types (eg. "int") and capitalized words, which usually correspond to class names.

Comment Color (definitions.comment.color = #007C00)
Used as the color for all comments.

Double-quoted Color (definitions.double.quoted.color = #B20000)
Used as the color for strings, which use double quotation marks.

Single-quoted Color (definitions.single.quoted.color = #FF00FF)
Used as the color for characters, which use single quotation marks.

Number Color (definitions.number.color = #00B2B2)
Used as the color for all numbers.

Background Color (definitions.background.color = #FFFFFF)
Used as the background color for all panes.

Brace-matching Color (definitions.match.color = #BEFFE6)
Used as the highlight color when matching braces.

Compiler Error Color (compiler.error.color = #FFFF00)
Used as the highlight color for compiler errors and JUnit test failures.

Bookmark Color (bookmark.color = #00FF00)
Used as the highlight color for bookmarks.

Find Results Color 1/2/3/4 (find.results.color1 = #FF9933, find.results.color2 = #30C996, find.results.color3 = #30FCFC, find.results.color4 = #FF66CC)
Used as the highlight color for find results.

Debugger Breakpoint Color (debug.breakpoint.color = #FF0000)
Used as the highlight color for breakpoints.

Disabled Debugger Breakpoint Color (debug.breakpoint.disabled.color = #800000)
Used as the highlight color for disabled breakpoints.

Debugger Location Color (debug.thread.color = #64FFFF)
Used as the highlight color for the location of the current thread in the debugger, shown after a breakpoint is hit or a step has occurred.

System.out Color (system.out.color = #007C00)
Used as the color for text from System.out.

System.err Color (system.err.color = #FF0000)
Used as the color for text from System.err.

System.in Color (system.in.color = #7C007C)
Used as the color for text to be read by System.in.

Interactions Error Color (interactions.error.color = #B20000)
Used as the color for text that indicates errors in the Interactions Pane.

Debug Message Color (debug.message.color = #0000B2)
Used as the color for text displayed by the debugger.

DrJava Errors Button Background Color (rjava.errors.button.color = #FF0000)
Used as background color for the "DrJava Errors" button that is displayed in case of an internal DrJava error.

Right Margin Color (right.margin.color = #CCCCCC)
Used as line color for the vertical line representing the right margin of the document, if the line is enabled.

⚠️ **GitHub.com Fallback** ⚠️