1; Please see http://php.net/manual/en/function.parse-ini-file.php
2; for limitations of the ini format used here
3
4; To extend this file or make changes to it, it is recommended to create
5; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
6; any changes after an upgrade.
7; Please don't forget to copy the section your changes should be under
8; (i.e. [stylesheets] or [replacements]) into that file as well.
9
10; Define the stylesheets your template uses here. The second value
11; defines for which output media the style should be loaded. Currently
12; print, screen and all are supported.
13; You can reference CSS and LESS files here. Files referenced here will
14; be checked for updates when considering a cache rebuild while files
15; included through LESS' @import statements are not
16
17[stylesheets]
18
19css/basic.less            = screen
20css/_imgdetail.css        = screen
21css/_media_popup.css      = screen
22css/_media_fullscreen.css = screen
23css/_fileuploader.css     = screen
24css/_tabs.css             = screen
25css/_links.css            = screen
26css/_toc.css              = screen
27css/_footnotes.css        = screen
28css/_search.less          = screen
29css/_recent.css           = screen
30css/_diff.css             = screen
31css/_edit.css             = screen
32css/_modal.css            = screen
33css/_forms.css            = screen
34css/_admin.less           = screen
35css/_autocolor.less       = screen
36css/_geshi_dark.less      = screen
37css/_plugin_note.less     = screen
38css/_plugin_wrap.less     = screen
39css/structure.less        = screen
40css/design.less           = screen
41css/usertools.less        = screen
42css/pagetools.less        = screen
43css/content.less          = screen
44
45css/mobile.less           = all
46css/print.css             = print
47
48
49; This section is used to configure some placeholder values used in
50; the stylesheets. Changing this file is the simplest method to
51; give your wiki a new look.
52; Placeholders defined here will also be made available as LESS variables
53; (with surrounding underscores removed, and the prefix @ini_ added)
54
55[replacements]
56
57;--------------------------------------------------------------------------
58;------ guaranteed dokuwiki color placeholders that every plugin can use
59
60; These are the default colors of the light template
61
62; main text and background colors
63__text__           = "#333333"
64__background__     = "#ffffff"
65; alternative text and background colors
66__text_alt__       = "#999999"
67__background_alt__ = "#eeeeee"
68; neutral text and background colors
69__text_neu__       = "#666666"
70__background_neu__ = "#dddddd"
71; border color
72__border__         = "#cccccc"
73
74; highlighted text (e.g. search snippets)
75__highlight__      = "#ffff99"
76
77; default link color
78__link__            = "#2b73b7"
79
80;--------------------------------------------------------------------------
81
82; background of the page
83__background_site__ = "#eff2f8"
84
85; pre (inline code)
86__pre_text_color__        = "#b10000"
87__pre_background_color__  = "#f0d2d2"
88
89; selection color
90__selection_color__             = "#ffffff"
91__selection_background_color__  = "#3584e4"
92
93; these are used for links
94__existing__       = "#2b73b7"
95__missing__        = "#ff3300"
96
97; scrollbar
98__scrollbar_color_track__ = "#cbcdd1"
99__scrollbar_color_thumb__ = "#9a9ca1"
100
101;--------------------------------------------------------------------------
102
103; These are the default colors of the dark template
104
105; main text and background colors
106__text_color_dark__               = "#bababa"
107__background_color_dark__         = "#1e1e1e"
108; alternative text and background colors
109__text_alt_color_dark__           = "#bababa"
110__background_alt_color_dark__     = "#333333"
111; neutral text and background colors
112__text_neu_color_dark__           = "#dddddd"
113__background_neu_color_dark__     = "#666666"
114; border color
115__border_color_dark__             = "#333333"
116
117; highlighted text (e.g. search snippets)
118__highlight_color_dark__          = "#ffff99"
119
120; default link color
121__link_color_dark__               = "#569cd6"
122
123; background of the page
124__background_site_color_dark__    = "#252526"
125
126; pre (inline code)
127__pre_text_color_dark__           = "#bca27b"
128__pre_background_color_dark__     = "#37373d"
129
130; selection color
131__selection_color_dark__             = "#ffffff"
132__selection_background_color_dark__  = "#275c9c"
133
134; these are used for links
135__existing_color_dark__           = "#569cd6"
136__missing_color_dark__            = "#cd2a00"
137
138; scrollbar
139__scrollbar_track_color_dark__          = "#2c2c2c"
140__scrollbar_thumb_color_dark__          = "#4c4c4c"
141
142;--------------------------------------------------------------------------
143
144
145; site and sidebar widths
146__site_width__      = "99%"             ; @ini_site_width
147__sidebar_width__   = "16em"            ; @ini_sidebar_width
148
149; cut off points for mobile devices
150__tablet_width__    = "800px"           ; @ini_tablet_width
151__phone_width__     = "480px"           ; @ini_phone_width
152
153__theme_color__     = "#008800"         ; @_ini_theme_color: theme_color of the web app
154
155; base colors for note plugin
156__note_plugin_classic_color__    =   "#e6e6ff"
157__note_plugin_important_color__  =   "#ffffc9"
158__note_plugin_warning_color__    =   "#ffdddd"
159__note_plugin_tip_color__        =   "#ddffdd"
160