Removing the docs/ directory because we really no longer need it for anything
[viewsvn.git] / templates / default / code2.css
1 /*=====================================================================*\
2 || ###################################################################
3 || # ViewSVN [#]version[#]
4 || # Copyright ©2002-[#]year[#] Blue Static
5 || #
6 || # This program is free software; you can redistribute it and/or modify
7 || # it under the terms of the GNU General Public License as published by
8 || # the Free Software Foundation; version [#]gpl[#] of the License.
9 || #
10 || # This program is distributed in the hope that it will be useful, but
11 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 || # more details.
14 || #
15 || # You should have received a copy of the GNU General Public License along
16 || # with this program; if not, write to the Free Software Foundation, Inc.,
17 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 || ###################################################################
19 \*=====================================================================*/
20
21 /*
22 * Colours adaptd from Trac by Edgewall Software (http://www.edgewall.com/trac/)
23 * Trac is under the GNU GPL version 2
24 */
25
26 /*
27 * The definitions in this file apply to ALL types of highlighting. If you want to
28 * add more definitions (from other types of keywords by GeSHi) then you can name them
29 * ".code .CLASS_NAME" to have them apply to all languages. If you want to add or
30 * override a definition for a specific language, use ".GESHI_LANGUAGE .CLASS_NAME".
31 *
32 * This works because the code is wrapped like this:
33 * <div class="code">
34 * <div class="GESHI_LANGUAGE">
35 * </div>
36 * </div>
37 */
38
39 /* Key Words I (if, do, while, etc.) */
40 .code .kw1
41 {
42 color: #468;
43 font-weight: bold;
44 }
45
46 /* Key Words II (null, true, false, etc.) */
47 .code .kw2
48 {
49 color: #000;
50 font-weight: bold;
51 }
52
53
54 /* Built-in Functions */
55 .code .kw3
56 {
57 color: #900;
58 font-weight: bold;
59 }
60
61 /* Data Types (int, bool, etc) */
62 .code .kw4
63 {
64 color: #000;
65 font-weight: bold;
66 }
67
68 /* Comments */
69 .code .co1, .code .co2, .code .coMULTI
70 {
71 color: #998;
72 font-style: italic;
73 }
74
75 /* Strings */
76 .code .st0
77 {
78 color: #b84;
79 }
80
81 /* Methods */
82 .code .me0
83 {
84 color: #900;
85 }
86
87 /* Standard text without highlighting (default) */
88 .code .de1, .code .de2
89 {
90 }
91
92 /* Escaped characters */
93 .code .es0
94 {
95 }
96
97 /* Symbols [ ( { } ) ] */
98 .code .br0
99 {
100 }
101
102 /* Numbers */
103 .code .nu0
104 {
105 }
106
107 /*=====================================================================*\
108 || ###################################################################
109 || # $HeadURL$
110 || # $Id$
111 || ###################################################################
112 \*=====================================================================*/