1; Please see http://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/_imgdetail.css        = screen
20css/_media_popup.css      = screen
21css/_media_fullscreen.css = screen
22css/_fileuploader.css     = screen
23css/tabs.less             = screen
24css/_links.css            = screen
25css/_footnotes.css        = screen
26css/_search.css           = screen
27css/_recent.css           = screen
28css/_diff.css             = screen
29css/_edit.less             = screen
30css/_modal.css            = screen
31css/_forms.css            = screen
32css/_admin.less           = screen
33css/basic.less            = screen
34css/structure.less        = screen
35css/misc.less			  = screen
36css/plugin.less           = screen
37css/tools.less            = screen
38css/article.less          = screen
39css/biseau.less           = screen
40
41css/mobile.less           = all
42css/print.css             = print
43
44; This section is used to configure some placeholder values used in
45; the stylesheets. Changing this file is the simplest method to
46; give your wiki a new look.
47; Placeholders defined here will also be made available as LESS variables
48; (with surrounding underscores removed, and the prefix @ini_ added)
49
50[replacements]
51
52;--------------------------------------------------------------------------
53;------ guaranteed dokuwiki color placeholders that every plugin can use
54; background color (main, alternative and neutral)
55; This template use other way to classified color, see below.
56; /!\ if you change it, some plugin have strange colors.
57__background__      = "@ini_neutrallight"            ; @ini_background
58__background_alt__  = "@ini_neutral3"            ; @ini_background_alt : used on a lot of border (plugin too) ><
59__background_neu__  = "@ini_neutral4"            ; @ini_background_neu
60
61; border color
62__border__          = "@ini_neutral3"            ; @ini_border
63
64; text color (main, alternative and neutral)
65__text__            = "@ini_neutraldark"            ; @ini_text
66__text_alt__        = "@ini_neutral2"            ; @ini_text_alt
67__text_neu__        = "@ini_neutral1"            ; @ini_text_neu
68
69; highlighted text (e.g. search snippets)
70__highlight__       = "#ffdb4a"            ; @ini_highlight
71
72; link color
73__link__            = "#483D8B"         ; @ini_link // wikilink1 : link existing or external
74
75;--------------------------------------------------------------------------
76;--- under this line, placeholders are specific at template, note used in plugin
77
78;--------------------------------------------------------------------------
79;--- Other colors used only for wiki function
80__link2__            = "#a6006c"         ; @ini_link2 // wikilink2 : who don't exist on the wiki
81
82; difference between version
83__diff_add__ = "#cfc" ; @ini_diff_add
84__diff_del__ = "#fdd" ; @ini_diff_del
85
86; site and sidebar widths
87__sidebar_width__   = "20em"            ; @ini_sidebar_width
88__article_width__   = "50em"            ; @ini_article_width
89__navtool_width__   = "15em"            ; @ini_navtool_width
90
91; cut off points for mobile devices
92__phone_width__     = "900px"           ; @ini_phone_width
93
94;--------------------------------------------------------------------------
95; ---- Describe color with logic
96; -- Neutral colors. Don't change it unless you want strange design.
97
98; Grey model, from darkest to lightest.
99; __neutraldark__ = "#2F2F2F" ; @ini_neutraldark
100;__neutral1__ = "#7a7a7a" ; @ini_neutral1
101;__neutral2__ = "#999" ; @ini_neutral2
102;__neutral3__ = "#ccc" ; @ini_neutral3
103;__neutral4__ = "#ddd" ; @ini_neutral4
104;__neutrallight__ = "#ffffff" ; @ini_neutrallight
105
106; Color model, from darkest to lightest.
107__neutraldark__ = "#2d1040" ; @ini_neutraldark
108__neutral1__ = "#6359db" ; @ini_neutral1
109__neutral2__ = "#6639af" ; @ini_neutral2
110__neutral3__ = "#9073ff" ; @ini_neutral3
111__neutral4__ = "#ddd" ; @ini_neutral4
112__neutrallight__ = "#ffffff" ; @ini_neutrallight
113
114; -- Other color, more identity color !
115
116; Used on body background and title table background
117__color7__ = "#9890bd" ; @ini_color7
118
119; -- Specific to Khaganat : logo color. Used on article title.
120; khaganat: #8530bf ; khanat : #100873
121__title_color__	= "#8530bf" ; @ini_title_color
122
123