About The Test Theme

The test theme is designed to simplify visually tracking the HTML output files generated from the automated tests. Its color palette is bright and high contrast, and all elements are covered with unique colors and styles combinations.

Keywords groups 1-10 are styled, to cover even the most complex syntaxes. Keywords 1-5 and 6-10 share the same colors, except that in the former these are used as background colors while in the latter as foreground colors (the latter have a dark grey background to distinguish them from non-keywords). Single line comments are in italic, to distinguish them from block comments, which share the same color.

The theme was designed with practicality in mind, at the expense of beauty.

hl std | Default text.
hl slc | Comment single line
hl com | Comment block
hl str | String
hl esc | Escape sequence
hl ipl | Interpolation
hl ppc | Preprocessor directives
hl pps | Strings within preprocessor directives
hl lin | Line numbers
hl num | Numerica constants
hl opt | Operators
hl kwa | Keyword Id 1
hl kwb | Keyword Id 2
hl kwc | Keyword Id 3
hl kwd | Keyword Id 4
hl kwe | Keyword Id 5
hl kwf | Keyword Id 6
hl kwg | Keyword Id 7
hl kwh | Keyword Id 8
hl kwi | Keyword Id 9
hl kwj | Keyword Id 10

Examples

001 printf("Result is \"%d\".", res);  // String with escapes and interpolation
002 #include <stdio.h>
003 #include "filename.h"