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; load styles from the default 'dokuwiki' template 20; some of these have been renamed from *.css to *.less 21; but .css still loads the same file and is backwards compatible 22../dokuwiki/css/_imgdetail.css = screen 23../dokuwiki/css/_media_popup.css = screen 24../dokuwiki/css/_media_fullscreen.css = screen 25../dokuwiki/css/_fileuploader.css = screen 26../dokuwiki/css/_tabs.css = screen 27../dokuwiki/css/_links.css = screen 28../dokuwiki/css/_toc.css = screen 29../dokuwiki/css/_footnotes.css = screen 30../dokuwiki/css/_search.less = screen 31../dokuwiki/css/_recent.css = screen 32../dokuwiki/css/_diff.css = screen 33../dokuwiki/css/_edit.css = screen 34../dokuwiki/css/_modal.css = screen 35../dokuwiki/css/_forms.css = screen 36../dokuwiki/css/_admin.less = screen 37 38; load the rest of the styles 39css/basic.css = all 40css/structure.css = all 41css/content.css = all 42css/wrap_classes.css = all 43css/prosemirror.css = screen 44 45css/mobile.css = all 46css/print.css = print 47 48 49; This section is used to configure some placeholder values used in 50; the stylesheets. Changing this file is the simplest method to 51; give your wiki a new look. 52; Placeholders defined here will also be made available as LESS variables 53; (with surrounding underscores removed, and the prefix @ini_ added) 54 55[replacements] 56 57;-------------------------------------------------------------------------- 58;------ guaranteed dokuwiki color placeholders that every plugin can use 59 60; main text and background colors 61__title_color__ = "#333" 62 63__text__ = "#333" ; @ini_text 64__background__ = "#fff" ; @ini_background 65 66; alternative text and background colors 67__text_alt__ = "#777" ; @ini_text_alt 68__background_alt__ = "#eee" ; @ini_background_alt 69 70; border color 71__border__ = "#ccc" ; @ini_border 72 73; highlighted text (e.g. search snippets) 74__highlight__ = "#ff9" ; @ini_highlight 75 76; link color 77__link__ = "#245db6" ; @ini_link 78 79;-------------------------------------------------------------------------- 80 81; these are used for other links 82__existing__ = "#090" ; @ini_existing 83__missing__ = "#c30" ; @ini_missing 84 85; widths 86__site_width__ = "64em" ; @ini_site_width 87__sidebar_width__ = "16em" ; @ini_sidebar_width 88__mobile_breakpoint__ = "800px" ; @ini_mobile_breakpoint 89__sidebox_width__ = "300px" ; @ini_sidebox_width 90 91; color of the web app (used by the core, not by the template) 92__theme_color__ = "#fff" ; @ini_theme_color 93