1; Define the stylesheets your template uses here. The second value
2; defines for which output media the style should be loaded. Currently
3; print, screen and all are supported.
4; You can reference CSS and LESS files here. Files referenced here will
5; be checked for updates when considering a cache rebuild while files
6; included through LESS' @import statements are not
7
8[stylesheets]
9
10	css/basic.css           = all
11
12	css/_header.css         = all
13	css/_main.css           = all
14	css/_main_toc.css       = all
15	css/_main_aside.css     = all
16	css/_main_top.css       = all
17	css/_footer.css         = all
18
19	css/_detail.css         = all
20	css/_mediamanager.css   = all
21
22	css/_edit.css           = all
23	css/_revisions.css      = all
24
25	css/_plugins.css        = all
26
27; This section is used to configure some placeholder values used in
28; the stylesheets. Changing this file is the simplest method to
29; give your wiki a new look.
30; Placeholders defined here will also be made available as LESS variables
31; (with surrounding underscores removed, and the prefix @ini_ added)
32
33[replacements]
34
35;--------------------------------------------------------------------------
36;- guaranteed dokuwiki color placeholders that every plugin can use
37
38; main text and background colors
39__text__            = "#222"             ; @ini_text
40__background__      = "#eee"             ; @ini_background
41; alternative text and background colors
42__text_alt__        = "#444"             ; @ini_text_alt
43__background_alt__  = "#666"             ; @ini_background_alt
44;; neutral text and background colors
45__text_neu__        = "#666"            ; @ini_text_neu
46__background_neu__  = "#ddd"            ; @ini_background_neu
47;; border color
48__border__          = "#ccc"            ; @ini_border
49
50;; highlighted text (e.g. search snippets)
51__highlight__       = "#00d2db"          ; @ini_highlight
52
53;; used for links
54__link__            = "#27b"            ; @ini_link
55
56;--------------------------------------------------------------------------
57
58;;__link_alt__        = "eee"             ; @ini_link_alt
59;;__background_site__ = "#eee"            ; @ini_background_site
60
61; site and sidebar widths
62__site_width__      = "45rem"            ; @ini_site_width
63__sidebar_width__   = "16em"             ; @ini_sidebar_width
64; cut off points for mobile devices
65__tablet_width__    = "1024px"           ; @ini_tablet_width
66__phone_width__     = "480px"           ; @ini_phone_width
67
68; title settings
69__title_font__      = "Verdana"          ; @ini_title_font
70__title_style__     = "lowercase"        ; @ini_title_style
71__title_size__      = "2rem"             ; @ini_title_size
72__title_weight__    = "bold"             ; @ini_title_weight
73
74; accent colors
75__top_color__       = "#00b283"          ; @ini_top_color
76__mid_color__       = "#007cb3"          ; @ini_mid_color
77__bot_color__       = "#8985d8"          ; @ini_bot_color
78__alt_color__       = "#00d2db"          ; @ini_out_color
79__top_alpha_color__ = "#00b2837b"        ; @ini_top_alpha_color
80__mid_alpha_color__ = "#007cb37b"        ; @ini_mid_alpha_color
81__bot_alpha_color__ = "#8985d87b"        ; @ini_bot_alpha_color
82__alt_alpha_color__ = "#00d2db7b"        ; @ini_out_alpha_color
83
84