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[stylesheets]
10
11fonts/_font.less		= screen
12
13css/maintag.less	= screen
14css/blocks.less		= screen
15css/media.less		= screen
16css/status.less		= screen
17
18css/admin.less		= screen
19css/diff.less		= screen
20css/layout.less		= screen
21css/linkwiz.less	= screen
22css/profile.less	= screen
23css/recent.less		= screen
24css/search.less		= screen
25css/toc.less		= screen
26
27css/print.less		= print
28
29; This section is used to configure some placeholder values used in
30; the stylesheets. Changing this file is the simplest method to
31; give your wiki a new look.
32
33[replacements]
34
35;--------------------------------------------------------------------------
36;------ guaranteed dokuwiki color placeholders that every plugin can use
37
38; main text and background colors
39__text__           = "#000"
40__background__     = "#fff"
41
42; alternative text and background colors
43__text_alt__       = "#638c9c"
44__background_alt__ = "#dee7ec"
45
46; neutral text and background colors
47__text_neu__       = "#666"
48__background_neu__ = "#f5f5f5"
49
50; border color
51__border__         = "#8cacbb"
52
53;--------------------------------------------------------------------------
54
55; other text and background colors
56__text_other__       = "#ccc"
57__background_other__ = "#f7f9fa"
58
59; these are used for links
60__extern__    = "#436976"
61__existing__  = "#090"
62__missing__   = "#f30"
63
64; highlighting search snippets
65__highlight__ = "#ff9"
66
67;--------------------------------------------------------------------------
68;------ for keeping old templates and plugins compatible to the old pattern
69
70; (to be deleted at the next or after next release)
71__white__      = "#fff"
72__lightgray__  = "#f5f5f5"
73__mediumgray__ = "#ccc"
74__darkgray__   = "#666"
75__black__      = "#000"
76
77; these are the shades of blue
78__lighter__   = "#f7f9fa"
79__light__     = "#eef3f8"
80__medium__    = "#dee7ec"
81__dark__      = "#8cacbb"
82__darker__    = "#638c9c"
83