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/_footnotes.css        = screen
31../dokuwiki/css/_search.css           = screen
32../dokuwiki/css/_recent.css           = screen
33../dokuwiki/css/_diff.css             = screen
34../dokuwiki/css/_edit.css             = screen
35../dokuwiki/css/_modal.css            = screen
36../dokuwiki/css/_forms.css            = screen
37../dokuwiki/css/_admin.css            = screen
38
39; load the rest of the styles
40css/structure.css                     = screen
41css/design.css                        = screen
42css/content.css                       = screen
43css/includes.css                      = screen
44css/_toc.css        		        = screen
45css/_dwstyles.css				   = screen
46css/_pluginstyles.css			   = screen
47
48css/mobile.css                        = all
49css/print.css                         = print
50
51
52; This section is used to configure some placeholder values used in
53; the stylesheets. Changing this file is the simplest method to
54; give your wiki a new look.
55; Placeholders defined here will also be made available as LESS variables
56; (with surrounding underscores removed, and the prefix @ini_ added)
57
58[replacements]
59
60;--------------------------------------------------------------------------
61;------ guaranteed dokuwiki color placeholders that every plugin can use
62
63; main text and background colors
64__text__           = "#eee"                 ; @ini_text
65__background__     = "#111"                 ; @ini_background
66; alternative text and background colors
67__text_alt__       = "#eee"                 ; @ini_text_alt
68__background_alt__ = "#333"                 ; @ini_background_alt
69; neutral text and background colors
70__text_neu__       = "#eee"                 ; @ini_text_neu
71__background_neu__ = "black"                ; @ini_background_neu
72; border color
73__border__         = "#ffc0cb"                 ; @ini_border
74
75; highlighted text (e.g. search snippets)
76__highlight__      = "#333"                 ; @ini_highlight
77
78; link color
79__link__           = "#ffc0cb"                 ; @ini_link
80
81;--------------------------------------------------------------------------
82
83; these are used for other links
84__existing__       = "#ffc0cb"                 ; @ini_existing
85__missing__        = "#f41f1f"                 ; @ini_missing
86
87; widths
88__site_width__     = "86%"                  ; @ini_site_width
89__sidebar_width__  = "100%"                 ; @ini_sidebar_width
90__toc_width__	    = "12em"			    ; @ini_toc_width
91__tablet_width__   = "800px"        	    ; @ini_tablet_width
92__phone_width__    = "480px"         	    ; @ini_phone_width
93
94
95; color of the web app (used by the core, not by the template)
96__theme_color__    = "#ffc0cb"                 ; @ini_theme_color
97
98;other colors
99__float_menus__    = "rgba(0,0,0,.3)"	    ; @ini_float_menus
100__header_footer__  = "rgba(51,38,40,.8)"    ; @ini_header_footer
101__cloud_tag__      = "#ff3255"		    ; @ini_cloud_tag
102__header_hover__   = "#332628"		    ; @ini_header_hover
103
104
105