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