final move of files
[web.mtrack] / MTrack / hyperlight / vibrant-ink.css
1 /*
2  * Copyright 2008 Konrad Rudolph
3  * All rights reserved.
4  *
5  * Colour scheme based on the Vibrant Ink scheme by Justin Palmer for the
6  * TextMate text editor.
7  * http://alternateidea.com/blog/articles/2006/1/3/textmate-vibrant-ink-theme-and-prototype-bundle
8  */
9
10 .source-code.vibrant-ink {
11     background: black;
12     color: white;
13 }
14
15 .source-code.vibrant-ink .keyword { color: #F60; font-weight: bold; }
16 .source-code.vibrant-ink .keyword.literal { color: #FC0; }
17 .source-code.vibrant-ink .keyword.type { color: #FC0; }
18 .source-code.vibrant-ink .keyword.builtin { color: #44B4CC; }
19 .source-code.vibrant-ink .preprocessor { color: #996; }
20 .source-code.vibrant-ink .comment { color: #93C; }
21 .source-code.vibrant-ink .comment .doc { color: #399; font-weight: bold; }
22 .source-code.vibrant-ink .identifier { color: white; }
23 .source-code.vibrant-ink .string, .source-code.vibrant-ink .char { color: #6F0; }
24 .source-code.vibrant-ink .escaped { color: #AAA; }
25 .source-code.vibrant-ink .number, .source-code.vibrant-ink .tag { color: #FFEE98; }
26 .source-code.vibrant-ink .regex, .source-code.vibrant-ink .attribute { color: #44B4CC; }
27 .source-code.vibrant-ink .operator { color: #888; }
28 .source-code.vibrant-ink .keyword.operator { color: #F60; }
29 .source-code.vibrant-ink .whitespace { background: #333; }
30 .source-code.vibrant-ink .error { border-bottom: 1px solid red; }
31
32 .source-code.vibrant-ink .tag .attribute { font-style: italic; }
33 .source-code.vibrant-ink.xml .preprocessor .keyword { color #996; }
34 .source-code.vibrant-ink.xml .preprocessor .keyword { color: #996; }
35 .source-code.vibrant-ink.xml .meta, .source-code.vibrant-ink.xml .meta .keyword { color: #399; }
36
37 .source-code.vibrant-ink.cpp .preprocessor .identifier { color: #996; }
38
39 .source-code.vibrant-ink::-moz-selection,
40 .source-code.vibrant-ink span::-moz-selection {
41     background: yellow;
42     color: black;
43 }
44
45 .source-code.vibrant-ink::selection,
46 .source-code.vibrant-ink span::selection {
47     background: yellow;
48     color: black;
49 }
50