Color

The purpose of this document is to document colors to be used in code highlighting.

Default

    • Foreground color: E0E2E4 (r:224; g:226; b:228)

    • Background color: 24282A (r:36; g:40; b:42) (or 333333, websafe (r:51; g:51; b:51))

    • Font Face: PragmataPro

Smart Highlighting:

    • Background color: (r:255; g:0; b:255)

Variables/Identifiers

    • Foreground color: (r:255; g:170; b:0)

    • YAML alternative: (r:255; g:85; g:85) FF5555

    • Languages with $: BFAE2A (gold)

Whitespace symbols

    • Foreground color: (r:128; g:128; b:128)

Or, for a bit darker (e.g., recent Notepad++):

    • Foreground color: (r:96; g:96; b:96)

Current line highlight:

    • Background color: 243C2A (r:36; g:60; b:42) (Perhaps 295033 for highlighted reading)

Subdued

    • Foreground Color: 777777

Cursor ("|") {green}

    • Flash: no flash (hold cursor constant on the page)

    • Width: 2px

    • Foreground: 00ff00 (r:0; g:255; b:0)

    • Background: Default

Comments ("// asdf") {blue}

    • Foreground: (r:0; g:153; b:204)

    • Font Face, Background: Default

Primitives/Keywords ("private static int"/"if else") {red}

    • Foreground: (r:220; g:40; b:40) DC2828

    • Font Face: Bold

    • Alternative: C57633 (light brown)

Class and method definitions {red}

    • Foreground: ff5555 (r:255; g:85; b:85)

    • Background, Font Face: Default

Separators/Operators ("(){}[].,") {purple}

    • Foreground: cc0099 (r:204; g:0; b:153)

    • Background: Default

    • Font Face: Default + Bold

Matched separators (highlight mode, i.e., with cursor next to them: "{}|" where "|" is the curser) {green}

    • Foreground: 00ff00 (r:0; g:255; b:0)

    • Background: Default

    • Font Face: Default + Bold

Mismatched separators (highlight mode, i.e., with cursor next to them: "}|", where "|" is the cursor) {red}

    • Foreground: ff0000 (r:255; g:0; b:0)

    • Background: Default

    • Font Face: Default + Bold

Strings (""a string"") {green}

    • Foreground: 00cc00 (r:0; g:204; b:0)

    • Background: Default

    • Font Face: Courier New

Numbers (123) {light blue}

    • Foreground: 1fafff (r:31; g:175; b:255)

    • Background: Default

Format of colors listed above: (r:; g:; b:)

[Edit]