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; 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]
18css/all.css               = all
19css/_footnotes.css        = all
20css/_links.css            = screen
21css/_media_popup.less      = screen
22css/_fileuploader.css     = screen
23css/admin.css             = all
24css/configmanager.css     = all
25css/content.css           = all
26css/editform.css          = all
27css/extensionmanager.css  = all
28css/heading.css           = all
29css/html.css              = all
30css/msg.css               = all
31css/navbar.css            = all
32css/railbar.less          = all
33css/searchbox.css         = all
34css/sidebar.css           = all
35css/toc.css               = all
36css/_diff.css             = screen
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; Placeholders defined here will also be made available as LESS variables
43; (with surrounding underscores removed, and the prefix @ini_ added)
44
45[replacements]
46
47;--------------------------------------------------------------------------
48;------ guaranteed dokuwiki color placeholders that every plugin can use
49
50; main text and background colors
51__text__            = "#333"            ; @ini_text
52__background__      = "#fff"            ; @ini_background
53; alternative text and background colors
54__text_alt__        = "#999"            ; @ini_text_alt
55__background_alt__  = "#dee7ec"         ; @ini_background_alt
56; neutral text and background colors
57__text_neu__        = "#666"            ; @ini_text_neu
58__background_neu__  = "#ddd"            ; @ini_background_neu
59; border color
60__border__          = "#ccc"            ; @ini_border
61
62; highlighted text (e.g. search snippets)
63__highlight__       = "#ff9"            ; @ini_highlight
64
65
66;--------------------------------------------------------------------------
67
68__background_site__ = "#fffff"         ; @ini_background_site
69
70; these are used for links
71__link__            = "#2b73b7"         ; @ini_link
72__existing__        = "#080"            ; @ini_existing
73__missing__         = "#d30"            ; @ini_missing
74
75; site and sidebar widths
76__site_width__      = "75em"            ; @ini_site_width
77__sidebar_width__   = "13em"            ; @ini_sidebar_width
78; cut off points for mobile devices
79__tablet_width__    = "800px"           ; @ini_tablet_width
80__phone_width__     = "480px"           ; @ini_phone_width
81
82