xref: /template/ad-hominem/style.ini (revision eb708266bcbc9ec5d164b4d4577a54b34fa02bd9)
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/layout.less				= all
20css/content.css				= all
21; css/_media_popup.css      = screen
22; css/_media_fullscreen.css = screen
23; css/_fileuploader.css     = screen
24; css/_tabs.css             = screen
25; css/_links.css            = screen
26; css/_toc.css              = screen
27; css/_footnotes.css        = screen
28; css/_search.less          = screen
29; css/_recent.css           = screen
30; css/_diff.css             = screen
31; css/_edit.css             = screen
32; css/_modal.css            = screen
33; css/_forms.css            = screen
34; css/_admin.less           = screen
35; css/structure.less        = screen
36; css/design.less           = screen
37; css/usertools.less        = screen
38; css/pagetools.less        = screen
39; css/content.less          = screen
40;
41; css/mobile.less           = all
42; css/print.css             = print
43
44
45; This section is used to configure some placeholder values used in
46; the stylesheets. Changing this file is the simplest method to
47; give your wiki a new look.
48; Placeholders defined here will also be made available as LESS variables
49; (with surrounding underscores removed, and the prefix @ini_ added)
50
51[replacements]
52
53;--------------------------------------------------------------------------
54;------ guaranteed dokuwiki color placeholders that every plugin can use
55
56; main text and background colors
57__text__            = "#111"            ; @ini_text
58__headlines__		= "#333"			; @ini_headlines
59__background__      = "#FFF"            ; @ini_background
60; alternative text and background colors
61__text_alt__        = "#666"            ; @ini_text_alt
62__background_alt__  = "#EEE"            ; @ini_background_alt
63; neutral text and background colors
64__text_neu__        = "#666"            ; @ini_text_neu
65__background_neu__  = "#DDD"            ; @ini_background_neu
66; border color
67__border__          = "#CCC"            ; @ini_border
68; blockquote marker
69__blockquote__		= "#AAA"			; @ini_blockquote
70
71; highlighted text (e.g. search snippets)
72__highlight__       = "#ff9"            ; @ini_highlight
73
74; default link color
75__link__            = "#2b73b7"         ; @ini_link
76
77; border color
78__separator__       = "#666"            ; @ini_separator
79
80;--------------------------------------------------------------------------
81
82__background_site__ = "#fbfaf9"         ; @ini_background_site
83
84; these are used for wiki links
85__existing__        = "#080"            ; @ini_existing
86__missing__         = "#d30"            ; @ini_missing
87
88; site and sidebar widths
89__site_width__      = "75em"            ; @ini_site_width
90__sidebar_width__   = "16em"            ; @ini_sidebar_width
91; cut off points for mobile devices
92__tablet_width__    = "950px"           ; @ini_tablet_width
93__phone_width__     = "480px"           ; @ini_phone_width
94
95__theme_color__     = "#008800"         ; @ini_theme_color: theme_color of the web app
96
97; for focusing on element:
98__focus_color__		= "#0066CC"			; @ini_focus_color: focus colour (Accessibility)
99
100;----------------------------------------------- Font families ----
101
102__default_fonts__  = "Verdana,Arial,Helvetica,sans-serif"			; @ini_default_fonts
103__alt_fonts__      = "Georgia,'Times New Roman',Garamond,serif"		; @ini_alt_fonts
104__code_fonts__     = "Consolas,Code,'Courier New',Courier,mono"		; @ini_mono_fonts
105