1; Please see https://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./css/style.css                       = screen
20
21; load styles from the default 'dokuwiki' template
22; some of these have been renamed from *.css to *.less
23; but .css still loads the same file and is backwards compatible
24../dokuwiki/css/_imgdetail.css        = screen
25../dokuwiki/css/_media_popup.css      = screen
26../dokuwiki/css/_media_fullscreen.css = screen
27../dokuwiki/css/_fileuploader.css     = screen
28../dokuwiki/css/_tabs.css             = screen
29../dokuwiki/css/_links.css            = screen
30../dokuwiki/css/_toc.css              = screen
31../dokuwiki/css/_footnotes.css        = screen
32../dokuwiki/css/_search.css           = screen
33../dokuwiki/css/_recent.css           = screen
34../dokuwiki/css/_diff.css             = screen
35../dokuwiki/css/_edit.css             = screen
36../dokuwiki/css/_modal.css            = screen
37../dokuwiki/css/_forms.css            = screen
38../dokuwiki/css/_admin.css            = screen
39
40; This section is used to configure some placeholder values used in
41; the stylesheets. Changing this file is the simplest method to
42; give your wiki a new look.
43; Placeholders defined here will also be made available as LESS variables
44; (with surrounding underscores removed, and the prefix @ini_ added)
45
46[replacements]
47
48;--------------------------------------------------------------------------
49;------ guaranteed dokuwiki color placeholders that every plugin can use
50
51; main text and background colors
52__text__           = "#000"                 ; @ini_text
53__background__     = "#fff"                 ; @ini_background
54; alternative text and background colors
55__text_alt__       = "#505a5f"              ; @ini_text_alt
56__background_alt__ = "#fafcfe"              ; @ini_background_alt
57; neutral text and background colors
58__text_neu__       = "#666"                 ; @ini_text_neu
59__background_neu__ = "#ddd"                 ; @ini_background_neu
60; border color
61__border__         = "#b1b4b6"              ; @ini_border
62
63; highlighted text (e.g. search snippets)
64__highlight__      = "#ffdd00"              ; @ini_highlight
65
66; default link color
67__link__           = "#2d5490"              ; @ini_link
68
69; color of the web app (used by the core)
70__theme_color__    = "#2d5490"              ; @ini_theme_color
71
72; width of the main area
73__width__          = "60rem"                ; @ini_width
74