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
19css/basic.css                         = all
20css/simple.css                        = all
21
22; load styles from the default 'dokuwiki' template
23; some of these have been renamed from *.css to *.less
24; but .css still loads the same file and is backwards compatible
25../dokuwiki/css/_imgdetail.css        = screen
26../dokuwiki/css/_media_popup.css      = screen
27../dokuwiki/css/_media_fullscreen.css = screen
28../dokuwiki/css/_fileuploader.css     = screen
29../dokuwiki/css/_tabs.css             = screen
30../dokuwiki/css/_links.css            = screen
31;../dokuwiki/css/_toc.css              = screen
32../dokuwiki/css/_footnotes.css        = screen
33../dokuwiki/css/_search.css           = screen
34../dokuwiki/css/_recent.css           = screen
35../dokuwiki/css/_diff.css             = screen
36../dokuwiki/css/_edit.css             = screen
37../dokuwiki/css/_modal.css            = screen
38;../dokuwiki/css/_forms.css            = screen
39;../dokuwiki/css/_admin.css            = screen
40
41; load the rest of the styles
42css/print.css                         = print
43
44
45; This section is used to configure some placeholder values used in
46; the stylesheets. Changing this file is the simplest method to
47; give your wiki a new look.
48; Placeholders defined here will also be made available as LESS variables
49; (with surrounding underscores removed, and the prefix @ini_ added)
50
51[replacements]
52
53;--------------------------------------------------------------------------
54;------ guaranteed dokuwiki color placeholders that every plugin can use
55
56; main text and background colors
57__text__           = "#212121"                 ; @ini_text
58__background__     = "#ffffff"                 ; @ini_background
59; alternative text and background colors
60__text_alt__       = "#0d47a1"                 ; @ini_text_alt
61__background_alt__ = "#f5f7ff"                 ; @ini_background_alt
62; neutral text and background colors
63__text_neu__       = "#585858"                 ; @ini_text_neu
64__background_neu__ = "#ffffff"                 ; @ini_background_neu
65; border color
66__border__         = "#898ea4"                 ; @ini_border
67; highlighted text (e.g. search snippets)
68__highlight__      = "#ffdd33"                 ; @ini_highlight
69; link color
70__link__           = "#0d47a1"                ; @ini_link
71
72; these are used for other links
73__existing__       = "#0d41a1"                 ; @ini_existing
74__missing__        = "#ffdd33"                 ; @ini_missing
75
76; color of the web app (used by the core, not by the template)
77__theme_color__    = "#eee"                 ; @ini_theme_color
78
79; other color
80__code__	   = "#d81b60"			;@ini_code;
81__preformatted__   = "#444"			;@ini_preformatted;
82__disabled__	   = "#efefef"			;@ini_disabled;
83
84
85; DARK COLORS
86__dark_text__           = "#dcdcdc"                 ; @ini_dark_text
87__dark_background__     = "#212121"                 ; @ini_dark_background
88__dark_text_alt__       = "#ffb300"                 ; @ini_dark_text_alt
89__dark_background_alt__ = "#2b2b2b"                 ; @ini_dark_background_alt
90__dark_text_neu__       = "#ababab"                 ; @ini_dark_text_neu
91__dark_background_neu__ = "#212121"                 ; @ini_dark_background_neu
92__dark_code__	   	= "#f06292"			;@ini_dark_code;
93__dark_preformatted__	= "#ccc"			;@ini_dark_preformatted;
94__dark_disabled__	= "#111"			;@ini_dark_disabled;
95
96;--------------------------------------------------------------------------
97
98__site_width__     = "45rem"                 ; @ini_site_width
99