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]
18; DokuWiki core styles
19css/core/_media_popup.css      = screen
20css/core/_media_fullscreen.css = screen
21css/core/_fileuploader.css     = screen
22css/core/_links.css            = screen
23css/core/_search.less          = screen
24css/core/_edit.css             = screen
25css/core/_modal.css            = screen
26css/core/_forms.css            = screen
27css/core/_admin.less           = screen
28
29; Template styles
30css/template.less              = all
31css/toc.less                   = all
32css/diff.less                  = all
33css/recent.less                = all
34css/mobile.less                = all
35css/callouts.less              = all
36css/replacements.less          = all
37css/bs4-utilities.less         = all
38
39; Plugins styles
40css/plugins/addnewpage.less    = all
41css/plugins/bureaucracy.less   = all
42css/plugins/data.less          = all
43css/plugins/database2.less     = all
44css/plugins/datatables.less    = all
45css/plugins/dir.less           = all
46css/plugins/discussion.less    = all
47css/plugins/inlinetoc.less     = all
48css/plugins/linkback.less      = all
49css/plugins/move.less          = all
50css/plugins/overlay.less       = all
51css/plugins/publish.less       = all
52css/plugins/simplenavi.less    = all
53css/plugins/struct.less        = all
54css/plugins/tag.less           = all
55css/plugins/tagging.less       = all
56css/plugins/translation.less   = all
57
58; Print styles
59css/print.less                 = print
60
61; This section is used to configure some placeholder values used in
62; the stylesheets. Changing this file is the simplest method to
63; give your wiki a new look.
64; Placeholders defined here will also be made available as LESS variables
65; (with surrounding underscores removed, and the prefix @ini_ added)
66
67[replacements]
68
69;--------------------------------------------------------------------------
70;------ guaranteed dokuwiki color placeholders that every plugin can use
71
72; main text and background colors
73__text__            = "#333"             ; @ini_text
74__background__      = "#fff"             ; @ini_background
75; alternative text and background colors
76__text_alt__        = "#999"             ; @ini_text_alt
77__background_alt__  = "#eee"             ; @ini_background_alt
78; neutral text and background colors
79__text_neu__        = "#666"             ; @ini_text_neu
80__background_neu__  = "#ddd"             ; @ini_background_neu
81; border color
82__border__          = "#ccc"             ; @ini_border
83
84; highlighted text (e.g. search snippets)
85__highlight__       = "#ff9"             ; @ini_highlight
86
87;--------------------------------------------------------------------------
88
89__background_site__ = "#fbfaf9"          ; @ini_background_site
90
91; these are used for links
92__link__            = "#2b73b7"          ; @ini_link
93__existing__        = "#090"             ; @ini_existing
94__missing__         = "#f30"             ; @ini_missing
95