1; Please see http://www.php.net/manual/en/function.parse-ini-file.php 2; for limitations of the ini format used here 3 4; Define the stylesheets your template uses here. The second value 5; defines for which output media the style should be loaded. Currently 6; print, screen and rtl are supported. rtl styles are loaded additionally 7; to screen styles if a right-to-left language is selected (eg. hebrew) 8[stylesheets] 9layout.css = screen 10design.css = screen 11style.css = screen 12 13media.css = screen 14_mediaoptions.css = screen 15_admin.css = screen 16_linkwiz.css = screen 17_subscription.css = screen 18 19rtl.css = rtl 20print.css = print 21 22; This section is used to configure some placeholder values used in 23; the stylesheets. Changing this file is the simplest method to 24; give your wiki a new look. 25[replacements] 26 27;-------------------------------------------------------------------------- 28;------ guaranteed dokuwiki color placeholders that every plugin can use 29; main text and background colors 30__text__ = "#000" 31__background__ = "#C0C0C0" 32; alternative text and background colors 33__text_alt__ = "#C0C0C0" 34__background_alt__ = "#dee7ec" 35; neutral text and background colors 36__text_neu__ = "#666" 37__background_neu__ = "#f5f5f5" 38; border color 39__border__ = "#8cacbb" 40;-------------------------------------------------------------------------- 41 42; other text and background colors 43__text_other__ = "#ccc" 44__background_other__ = "#f7f9fa" 45 46; these are used for links 47__extern__ = "#436976" 48__existing__ = "#090" 49__missing__ = "#f30" 50 51; highlighting search snippets 52__highlight__ = "#ff9" 53 54 55;-------------------------------------------------------------------------- 56;------ for keeping old templates and plugins compatible to the old pattern 57; (to be deleted at the next or after next release) 58__white__ = "#fff" 59__lightgray__ = "#f5f5f5" 60__mediumgray__ = "#ccc" 61__darkgray__ = "#666" 62__black__ = "#000" 63 64; these are the shades of blue 65__lighter__ = "#f7f9fa" 66__light__ = "#eef3f8" 67__medium__ = "#dee7ec" 68__dark__ = "#8cacbb" 69__darker__ = "#638c9c" 70