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