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
19../dokuwiki/css/_media_popup.css      = screen
20../dokuwiki/css/_media_fullscreen.css = screen
21../dokuwiki/css/_fileuploader.css     = screen
22../dokuwiki/css/_tabs.css             = screen
23../dokuwiki/css/_links.css            = screen
24../dokuwiki/css/_toc.css              = screen
25../dokuwiki/css/_footnotes.css        = screen
26../dokuwiki/css/_recent.css           = screen
27../dokuwiki/css/_diff.css             = screen
28../dokuwiki/css/_modal.css            = screen
29../dokuwiki/css/print.css             = print
30
31css/normalize.less                    = screen
32css/genericons.less                   = screen
33css/basic.less                        = screen
34css/design.less                       = screen
35css/responsive.less                   = all
36css/dokuwiki.less                     = all
37
38; This section is used to configure some placeholder values used in
39; the stylesheets. Changing this file is the simplest method to
40; give your wiki a new look.
41; Placeholders defined here will also be made available as LESS variables
42; (with surrounding underscores removed, and the prefix @ini_ added)
43
44[replacements]
45
46;--------------------------------------------------------------------------
47;------ guaranteed dokuwiki color placeholders that every plugin can use
48
49; main text and background colors
50__text__            = "#333333"            ; @ini_text
51__background__      = "#ffffff"            ; @ini_background
52; alternative text and background colors
53__text_alt__        = "#707070"            ; @ini_text_alt
54__background_alt__  = "#f7f7f7"            ; @ini_background_alt
55; neutral text and background colors
56__text_neu__        = "#000000"            ; @ini_text_neu
57__background_neu__  = "#dedede"            ; @ini_background_neu
58; border color
59__border__          = "#eaeaea"            ; @ini_border
60__border_alt__      = "#c1c1c1"            ; @ini_border_alt
61__border_neu__      = "#d8d8d8"            ; @ini_border_neu
62
63; highlighted text (e.g. search snippets)
64__highlight__       = "#fff9c0"            ; @ini_highlight
65
66;--------------------------------------------------------------------------
67
68__background_site__ = "#f1f1f1"            ; @ini_background_site
69
70; these are used for links
71__link__            = "#333333"            ; @ini_link
72__existing__        = "#333333"            ; @ini_existing
73__missing__         = "#dd3300"            ; @ini_missing
74
75; site and sidebar widths
76__site_width__      = "1403px"             ; @ini_site_width
77__sidebar_width__   = "413px"              ; @ini_sidebar_width
78; cut off points for mobile devices
79__tablet_width__    = "60em"              ; @ini_tablet_width
80__phone_width__     = "38em"              ; @ini_phone_width
81