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
19css/mixins.less           = screen
20css/pure-min.css          = all
21
22css/basic.less            = screen
23css/_imgdetail.css        = screen
24css/_media_popup.css      = screen
25css/_media_fullscreen.css = screen
26css/_fileuploader.css     = screen
27css/_tabs.css             = screen
28css/_links.css            = screen
29css/_toc.css              = screen
30css/_footnotes.css        = screen
31css/_search.css           = screen
32css/_recent.css           = screen
33css/_diff.css             = screen
34css/_edit.css             = screen
35css/_modal.css            = screen
36css/_forms.css            = screen
37css/_admin.css            = screen
38
39css/structure.less        = screen
40css/design.less           = screen
41css/pagetools.less        = screen
42css/content.less          = screen
43
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; main text and background colors
61__text__            = "#333"            ; @ini_text
62__background__      = "#fff"            ; @ini_background
63; alternative text and background colors
64__text_alt__        = "#999"            ; @ini_text_alt
65__background_alt__  = "#eee"            ; @ini_background_alt
66; neutral text and background colors
67__text_neu__        = "#666"            ; @ini_text_neu
68__background_neu__  = "#ddd"            ; @ini_background_neu
69; border color
70__border__          = "#ccc"            ; @ini_border
71
72; highlighted text (e.g. search snippets)
73__highlight__       = "#ff9"            ; @ini_highlight
74
75;--------------------------------------------------------------------------
76
77__background_site__ = "#fbfaf9"         ; @ini_background_site
78
79; these are used for links
80__link__            = "#2b73b7"         ; @ini_link
81__existing__        = "#080"            ; @ini_existing
82__missing__         = "#d30"            ; @ini_missing
83
84; site and sidebar widths
85__site_width__      = "75em"            ; @ini_site_width
86__sidebar_width__   = "16em"            ; @ini_sidebar_width
87; cut off points for mobile devices
88__tablet_width__    = "1140px"           ; @ini_tablet_width
89__phone_width__     = "750px"           ; @ini_phone_width
90