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                         = 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
41; load the rest of the styles
42css/structure.css                     = screen
43css/design.css                        = screen
44css/content.css                       = screen
45css/includes.css                      = screen
46css/geshidark.css                      = screen
47
48css/mobile.css                        = all
49css/print.css                         = print
50css/style.css = all
51css/menu.min.css                      = screen
52css/mhmenu.css =screen
53
54; icomoon icon font
55fonts/style.css   = screen
56
57
58; This section is used to configure some placeholder values used in
59; the stylesheets. Changing this file is the simplest method to
60; give your wiki a new look.
61; Placeholders defined here will also be made available as LESS variables
62; (with surrounding underscores removed, and the prefix @ini_ added)
63
64[replacements]
65
66;--------------------------------------------------------------------------
67;------ guaranteed dokuwiki color placeholders that every plugin can use
68
69; main text and background colors
70__text__           = "#bdc1c6"                 ; @ini_text
71__background__     = "#202124"                 ; @ini_background
72; alternative text and background colors
73__text_alt__       = "#b3b3b3"                 ; @ini_text_alt
74__background_alt__ = "#333335"                 ; @ini_background_alt
75; neutral text and background colors
76__text_neu__       = "#eee"                 ; @ini_text_neu
77__background_neu__ = "#303134"                 ; @ini_background_neu
78; border color
79__border__         = "#5f6368"                 ; @ini_border
80__border_radius__  = "0.25rem"
81
82; highlighted text (e.g. search snippets)
83__highlight__      = "#ff9"                 ; @ini_highlight
84
85; link color
86__link__            = "#4599FF"                ; @ini_link
87
88;--------------------------------------------------------------------------
89
90; these are used for other links
91__existing__       = "#4599FF"                 ; @ini_existing
92__missing__        = "#ee9051"                 ; @ini_missing
93
94; widths
95__site_width__     = "62rem"                 ; @ini_site_width
96__sidebar_width__  = "16rem"                 ; @ini_sidebar_width
97
98
99; cut off points for mobile devices
100__tablet_width__    = "50rem"           ; @ini_tablet_width
101__phone_width__     = "30rem"           ; @ini_phone_width
102; color of the web app (used by the core, not by the template)
103__theme_color__    = "#4599FF"                 ; @ini_theme_color
104