You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.6 KiB
73 lines
1.6 KiB
12 years ago
|
bgcolor "white"; // the background color for documents
|
||
|
context gray; // the color for context lines (when specified with line ranges)
|
||
|
|
||
|
keyword blue b ; // for language keywords
|
||
|
type darkgreen ; // for basic types
|
||
|
usertype teal ; // for user defined types
|
||
|
string pink; // for strings and chars
|
||
|
regexp orange f ; // for strings and chars
|
||
|
specialchar pink f ; // for special chars, e.g., \n, \t, \\
|
||
|
comment black b; // for comments
|
||
|
number purple; // for literal numbers
|
||
|
preproc darkblue b ; // for preproc directives (e.g. #include, import)
|
||
|
symbol blue b; // for simbols (e.g. <, >, +)
|
||
|
function cyan b; // for function calls and declarations
|
||
|
cbracket blue b; // for block brackets (e.g. {, })
|
||
|
todo cyan b; // for TODO and FIXME
|
||
|
code brightgreen b; // for code snippets
|
||
|
|
||
|
//Predefined variables and functions (for instance glsl)
|
||
|
predef_var darkblue ;
|
||
|
predef_func darkblue b ;
|
||
|
|
||
|
// for OOP
|
||
|
classname teal ; // for class names, e.g., in Java and C++
|
||
|
|
||
|
// line numbers
|
||
|
linenum yellow f;
|
||
|
|
||
|
// Internet related
|
||
|
url blue u, f;
|
||
|
|
||
|
// other elements for ChangeLog and Log files
|
||
|
date blue b ;
|
||
|
time, file darkblue b ;
|
||
|
ip, name darkgreen ;
|
||
|
|
||
|
// for Prolog, Perl...
|
||
|
variable green;
|
||
|
|
||
|
// explicit for Latex
|
||
|
italics darkgreen i;
|
||
|
bold darkgreen b;
|
||
|
underline darkgreen u;
|
||
|
fixed green f;
|
||
|
argument darkgreen;
|
||
|
optionalargument purple;
|
||
|
math orange;
|
||
|
bibtex blue;
|
||
|
|
||
|
// for diffs
|
||
|
oldfile orange;
|
||
|
newfile darkgreen;
|
||
|
difflines blue;
|
||
|
|
||
|
// for css
|
||
|
selector purple;
|
||
|
property blue;
|
||
|
value darkgreen i;
|
||
|
|
||
|
// for oz
|
||
|
atom orange;
|
||
|
meta i;
|
||
|
|
||
|
// for file system
|
||
|
path orange;
|
||
|
|
||
|
// for C (or other language) labels
|
||
|
label teal b;
|
||
|
|
||
|
// for errors
|
||
|
error purple;
|
||
|
warning darkgreen;
|