1bgcolor "white"; // the background color for documents
2context gray; // the color for context lines (when specified with line ranges)
3
4keyword blue b ; // for language keywords
5type darkgreen ; // for basic types
6usertype teal ; // for user defined types
7string red f ; // for strings and chars
8regexp orange f ; // for strings and chars
9specialchar pink f ; // for special chars, e.g., \n, \t, \\
10comment brown i, noref; // for comments
11number purple ;	// for literal numbers
12preproc darkblue b ; // for preproc directives (e.g. #include, import)
13symbol darkred ; // for simbols (e.g. <, >, +)
14function black b; // for function calls and declarations
15cbracket red; // for block brackets (e.g. {, })
16todo bg:cyan b;	// for TODO and FIXME
17code bg:brightgreen b; // for code snippets
18
19//Predefined variables and functions (for instance glsl)
20predef_var darkblue ;
21predef_func darkblue b ;
22
23// for OOP
24classname teal ; // for class names, e.g., in Java and C++
25
26// line numbers
27linenum black f;
28
29// Internet related
30url blue u, f;
31
32// other elements for ChangeLog and Log files
33date blue b ;
34time, file darkblue b ;
35ip, name darkgreen ;
36
37// for Prolog, Perl...
38variable darkgreen ;
39
40// explicit for Latex
41italics darkgreen i;
42bold darkgreen b;
43underline darkgreen u;
44fixed green f;
45argument darkgreen;
46optionalargument purple;
47math orange;
48bibtex blue;
49
50// for diffs
51oldfile orange;
52newfile darkgreen;
53difflines blue;
54
55// for css
56selector purple;
57property blue;
58value darkgreen i;
59
60// for oz
61atom orange;
62meta i;
63
64// for file system
65path orange;
66
67// for C (or other language) labels
68label teal b;
69
70// for errors
71error purple;
72warning darkgreen;
73
74// for feature (Cucumber) files
75cuketag green ;
76gherken blue ;
77given red ;
78when cyan ;
79then yellow ;
80and_but pink ;
81table gray ;