1; Please see http://www.php.net/manual/en/function.parse-ini-file.php
2; for limitations of the ini format used here
3
4; Define the stylesheets your template uses here. The second value
5; defines for which output media the style should be loaded. Currently
6; print, screen and rtl are supported. rtl styles are loaded additionally
7; to screen styles if a right-to-left language is selected (eg. hebrew)
8
9; * W3C-Validiator workaround (just nearly colors for some qualities in a section
10;   like text-color and background-color or border-color and background-color
11;   prevents some warnings to the W3C CSS Validation Service)
12
13[stylesheets]
14;screen
15css/design.css        = screen
16css/layout.css        = screen
17
18css/media.css         = screen
19css/_mediaoptions.css = screen
20css/_admin.css        = screen
21css/_linkwiz.css      = screen
22css/_subscription.css = screen
23css/_mediamanager.css = screen
24css/_tabs.css         = screen
25css/_fileuploader.css = screen
26
27user/screen.css       = screen ; Load optional user defined styles.
28
29;print
30css/print.css         = print
31user/print.css        = print ; Load optional user defined styles.
32
33;right-to-left
34css/rtl.css           = rtl
35user/rtl.css          = rtl ; Load optional user defined styles.
36
37
38
39; This section is used to configure some placeholder values used in
40; the stylesheets. Changing this file is the simplest method to
41; give your wiki a new look.
42
43[replacements]
44
45;--------------------------------------------------------------------------
46;------ guaranteed dokuwiki color placeholders that every plugin can use
47; main text and background colors
48__text__         	  = "#666"
49__background__     	  = "#fff"
50; alternative text and background colors
51__text_alt__       	  = "#638c9c"
52__background_alt__ 	  = "#dee7ec"
53; *
54__nearly_background_alt__ = "dee8ec"
55; neutral text and background colors
56__text_neu__      	  = "#666"
57__background_neu__ 	  = "#f5f5f5"
58; border color
59__border__         	  = "#bbb"
60__border2__        	  = "#ececec"
61__border3__ 	   	  = "#cfcfcf"
62
63
64;--------------------------------------------------------------------------
65
66; other text and background colors
67__text_other__      	    = "#ccc"
68__background_other__ 	    = "#f7f9fa"
69; *
70__nearly_background_other__ = "#f6f8f9"
71__logo__	            = "#55616c"
72
73; *
74__nearly_white__     	    = "#fffffe"
75
76; these are used for links
77__existing__  		    = "#436976"
78__missing__   		    = "#f30"
79
80; highlighting search snippets
81__highlight__               = "#ff9"
82
83
84;--------------------------------------------------------------------------
85;------ css3 effects
86; (all these nice css3 stuff)
87
88; text and box shadows
89__text_shadow__             = "#666"
90__text_shadow2__            = "#222"
91__box_shadow__              = "#999"
92
93; selection style
94__selection__               = "#49a1ad"
95
96;--------------------------------------------------------------------------
97;------ for keeping old templates and plugins compatible to the old pattern
98; (to be deleted at the next or after next release)
99__white__      = "#fff"
100__lightgray__  = "#f5f5f5"
101__mediumgray__ = "#ccc"
102__darkgray__   = "#666"
103__black__      = "#000"
104
105; these are the shades of blue
106__lighter__   = "#f7f9fa"
107__light__     = "#eef3f8"
108__medium__    = "#dee7ec"
109__dark__      = "#8cacbb"
110__darker__    = "#638c9c"
111