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