😎 Give your xaringan slides some style
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

483 lines
22KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/style_mono_dark.R
  3. \name{style_mono_dark}
  4. \alias{style_mono_dark}
  5. \title{Monotone Dark Theme}
  6. \usage{
  7. style_mono_dark(
  8. base_color = "#cbf7ed",
  9. white_color = lighten_color(base_color, 0.8),
  10. black_color = darken_color(base_color, 0.85),
  11. text_color = white_color,
  12. header_color = base_color,
  13. background_color = black_color,
  14. link_color = base_color,
  15. text_bold_color = base_color,
  16. text_slide_number_color = base_color,
  17. padding = "16px 64px 16px 64px",
  18. background_image = NULL,
  19. background_size = NULL,
  20. background_position = NULL,
  21. code_highlight_color = "rgba(255,255,0,0.5)",
  22. code_inline_color = base_color,
  23. code_inline_background_color = NULL,
  24. code_inline_font_size = "1em",
  25. inverse_background_color = base_color,
  26. inverse_text_color = black_color,
  27. inverse_text_shadow = FALSE,
  28. inverse_header_color = black_color,
  29. inverse_link_color = link_color,
  30. title_slide_text_color = inverse_text_color,
  31. title_slide_background_color = inverse_background_color,
  32. title_slide_background_image = NULL,
  33. title_slide_background_size = NULL,
  34. title_slide_background_position = NULL,
  35. footnote_color = NULL,
  36. footnote_font_size = "0.9em",
  37. footnote_position_bottom = "60px",
  38. left_column_subtle_color = apply_alpha(base_color, 0.6),
  39. left_column_selected_color = base_color,
  40. blockquote_left_border_color = apply_alpha(base_color, 0.5),
  41. table_border_color = "#666",
  42. table_row_border_color = "#ddd",
  43. table_row_even_background_color = darken_color(base_color, 0.7),
  44. base_font_size = "20px",
  45. text_font_size = "1rem",
  46. header_h1_font_size = "2.75rem",
  47. header_h2_font_size = "2.25rem",
  48. header_h3_font_size = "1.75rem",
  49. header_background_auto = FALSE,
  50. header_background_color = header_color,
  51. header_background_text_color = background_color,
  52. header_background_padding = NULL,
  53. header_background_content_padding_top = "7rem",
  54. header_background_ignore_classes = c("normal", "inverse", "title", "middle",
  55. "bottom"),
  56. text_slide_number_font_size = "0.9em",
  57. text_font_google = NULL,
  58. text_font_family = xaringanthemer_font_default("text_font_family"),
  59. text_font_weight = xaringanthemer_font_default("text_font_weight"),
  60. text_font_url = xaringanthemer_font_default("text_font_url"),
  61. text_font_family_fallback = xaringanthemer_font_default("text_font_family_fallback"),
  62. text_font_base = "sans-serif",
  63. header_font_google = NULL,
  64. header_font_family = xaringanthemer_font_default("header_font_family"),
  65. header_font_weight = xaringanthemer_font_default("header_font_weight"),
  66. header_font_family_fallback = "Georgia, serif",
  67. header_font_url = xaringanthemer_font_default("header_font_url"),
  68. code_font_google = NULL,
  69. code_font_family = xaringanthemer_font_default("code_font_family"),
  70. code_font_size = "0.9rem",
  71. code_font_url = xaringanthemer_font_default("code_font_url"),
  72. code_font_family_fallback = xaringanthemer_font_default("code_font_family_fallback"),
  73. colors = NULL,
  74. extra_css = NULL,
  75. extra_fonts = NULL,
  76. outfile = "xaringan-themer.css"
  77. )
  78. }
  79. \arguments{
  80. \item{base_color}{Monotone Base Color, works best with a light color..
  81. Defaults to #cbf7ed. Used in multiple CSS rules. The value of this
  82. variable is also stored as a CSS variable that can be referenced with
  83. \code{var(--base)} in any argument of a style function or in custom CSS.}
  84. \item{white_color}{Brightest color used, default is a very light version of
  85. \code{base_color}. Defaults to \code{lighten_color(base_color, 0.8)}. Used in
  86. multiple CSS rules. The value of this variable is also stored as a CSS
  87. variable that can be referenced with \code{var(--white)} in any argument of a
  88. style function or in custom CSS.}
  89. \item{black_color}{Darkest color used, default is a very dark, version of
  90. \code{base_color}. Defaults to \code{darken_color(base_color, 0.85)}. Used in
  91. multiple CSS rules. The value of this variable is also stored as a CSS
  92. variable that can be referenced with \code{var(--black)} in any argument of a
  93. style function or in custom CSS.}
  94. \item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body}
  95. element. The value of this variable is also stored as a CSS variable that
  96. can be referenced with \code{var(--text_color)} in any argument of a style
  97. function or in custom CSS.}
  98. \item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the
  99. \verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
  100. variable that can be referenced with \code{var(--header-color)} in any argument
  101. of a style function or in custom CSS.}
  102. \item{background_color}{Slide Background Color. Defaults to \code{black_color}.
  103. Modifies the \code{.remark-slide-content} class. The value of this variable is
  104. also stored as a CSS variable that can be referenced with
  105. \code{var(--background-color)} in any argument of a style function or in custom
  106. CSS.}
  107. \item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the
  108. \verb{a, a > code} elements. The value of this variable is also stored as a CSS
  109. variable that can be referenced with \code{var(--link-color)} in any argument
  110. of a style function or in custom CSS.}
  111. \item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies
  112. the \code{strong} element. The value of this variable is also stored as a CSS
  113. variable that can be referenced with \code{var(--text-bold-color)} in any
  114. argument of a style function or in custom CSS.}
  115. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}.
  116. Modifies the \code{.remark-slide-number} class.}
  117. \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
  118. to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
  119. Accepts CSS
  120. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
  121. property values.}
  122. \item{background_image}{Background image applied to each \emph{and every} slide.
  123. Set \code{title_slide_background_image = "none"} to remove the background image
  124. from the title slide. Defaults to \code{NULL}. Modifies the
  125. \code{.remark-slide-content} class.}
  126. \item{background_size}{Background image size, requires \code{background_image} to
  127. be set. If \code{background_image} is set, \code{background_size} will default to
  128. \code{cover} so the background fills the screen. If both \code{background_image} and
  129. \code{background_position} are set, will default to 100 percent. Defaults to
  130. \code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
  131. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
  132. property values.}
  133. \item{background_position}{Background image position, requires
  134. \code{background_image} to be set, and it is recommended to adjust
  135. \code{background_size}. Defaults to \code{NULL}. Modifies the
  136. \code{.remark-slide-content} class. Accepts CSS
  137. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
  138. property values.}
  139. \item{code_highlight_color}{Code Line Highlight. Defaults to
  140. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
  141. The value of this variable is also stored as a CSS variable that can be
  142. referenced with \code{var(--code-highlight-color)} in any argument of a style
  143. function or in custom CSS.}
  144. \item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}.
  145. Modifies the \code{.remark-inline-code} class.}
  146. \item{code_inline_background_color}{Inline Code Background Color. Defaults
  147. to \code{NULL}. Modifies the \code{.remark-inline-code} class.}
  148. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
  149. Modifies the \code{.remark-inline-code} class. Accepts CSS
  150. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  151. property values. The value of this variable is also stored as a CSS
  152. variable that can be referenced with \code{var(--code-inline-font-size)} in any
  153. argument of a style function or in custom CSS.}
  154. \item{inverse_background_color}{Inverse Background Color. Defaults to
  155. \code{base_color}. Modifies the \code{.inverse} class. The value of this variable is
  156. also stored as a CSS variable that can be referenced with
  157. \code{var(--inverse-background-color)} in any argument of a style function or
  158. in custom CSS.}
  159. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{black_color}.
  160. Modifies the \code{.inverse} class. The value of this variable is also stored
  161. as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
  162. in any argument of a style function or in custom CSS.}
  163. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
  164. Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}
  165. \item{inverse_header_color}{Inverse Header Color. Defaults to \code{black_color}.
  166. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
  167. this variable is also stored as a CSS variable that can be referenced with
  168. \code{var(--inverse-header-color)} in any argument of a style function or in
  169. custom CSS.}
  170. \item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
  171. Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
  172. variable is also stored as a CSS variable that can be referenced with
  173. \code{var(--inverse-link-color)} in any argument of a style function or in
  174. custom CSS.}
  175. \item{title_slide_text_color}{Title Slide Text Color. Defaults to
  176. \code{inverse_text_color}. Modifies the \code{.title-slide} class. The value of this
  177. variable is also stored as a CSS variable that can be referenced with
  178. \code{var(--title-slide-text-color)} in any argument of a style function or in
  179. custom CSS.}
  180. \item{title_slide_background_color}{Title Slide Background Color. Defaults
  181. to \code{inverse_background_color}. Modifies the \code{.title-slide} class. The
  182. value of this variable is also stored as a CSS variable that can be
  183. referenced with \code{var(--title-slide-background-color)} in any argument of a
  184. style function or in custom CSS.}
  185. \item{title_slide_background_image}{Title Slide Background Image URL.
  186. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
  187. \item{title_slide_background_size}{Title Slide Background Image Size,
  188. defaults to "cover" if background image is set. Defaults to \code{NULL}.
  189. Modifies the \code{.title-slide} class. Accepts CSS
  190. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
  191. property values.}
  192. \item{title_slide_background_position}{Title Slide Background Image
  193. Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
  194. CSS
  195. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
  196. property values.}
  197. \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
  198. color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
  199. class.}
  200. \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
  201. the \code{.footnote} class. Accepts CSS
  202. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  203. property values.}
  204. \item{footnote_position_bottom}{Footnote location from bottom of screen.
  205. Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
  206. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
  207. property values.}
  208. \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
  209. \code{apply_alpha(base_color, 0.6)}. Modifies the
  210. \verb{.left-column h2, .left-column h3} classes.}
  211. \item{left_column_selected_color}{Left Column Current Selection. Defaults to
  212. \code{base_color}. Modifies the
  213. \verb{.left-column h2:last-of-type, .left-column h3:last-child} classes.}
  214. \item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults
  215. to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}
  216. \item{table_border_color}{Table top/bottom border. Defaults to #666.
  217. Modifies the \verb{table: border-top, border-bottom} elements.}
  218. \item{table_row_border_color}{Table row inner bottom border. Defaults to
  219. #ddd. Modifies the \verb{table thead th: border-bottom} elements.}
  220. \item{table_row_even_background_color}{Table Even Row Background Color.
  221. Defaults to \code{darken_color(base_color, 0.7)}. Modifies the
  222. \verb{thead, tfoot, tr:nth-child(even)} elements.}
  223. \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
  224. Defaults to 20px. Modifies the \code{html} element. The value of this variable
  225. is also stored as a CSS variable that can be referenced with
  226. \code{var(--base-font-size)} in any argument of a style function or in custom
  227. CSS.}
  228. \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
  229. the \code{.remark-slide-content} class. Accepts CSS
  230. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  231. property values. The value of this variable is also stored as a CSS
  232. variable that can be referenced with \code{var(--text-font-size)} in any
  233. argument of a style function or in custom CSS.}
  234. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
  235. Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
  236. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  237. property values. The value of this variable is also stored as a CSS
  238. variable that can be referenced with \code{var(--header-h1-font-size)} in any
  239. argument of a style function or in custom CSS.}
  240. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
  241. Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
  242. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  243. property values. The value of this variable is also stored as a CSS
  244. variable that can be referenced with \code{var(--header-h2-font-size)} in any
  245. argument of a style function or in custom CSS.}
  246. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
  247. Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
  248. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  249. property values. The value of this variable is also stored as a CSS
  250. variable that can be referenced with \code{var(--header-h3-font-size)} in any
  251. argument of a style function or in custom CSS.}
  252. \item{header_background_auto}{Add background under slide title automatically
  253. for h1 header elements. If not enabled, use \code{class: header_background} to
  254. enable. Defaults to \code{FALSE}.}
  255. \item{header_background_color}{Background Color for h1 Header with
  256. Background. Defaults to \code{header_color}. Modifies the
  257. \verb{.remark-slide-content h1} class. The value of this variable is also
  258. stored as a CSS variable that can be referenced with
  259. \code{var(--header-background-color)} in any argument of a style function or in
  260. custom CSS.}
  261. \item{header_background_text_color}{Text Color for h1 Header with
  262. Background. Defaults to \code{background_color}. Modifies the
  263. \verb{.remark-slide-content h1} class. The value of this variable is also
  264. stored as a CSS variable that can be referenced with
  265. \code{var(--header-background-text-color)} in any argument of a style function
  266. or in custom CSS.}
  267. \item{header_background_padding}{Padding for h1 Header with Background.
  268. Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
  269. CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
  270. property values.}
  271. \item{header_background_content_padding_top}{Top Padding for Content in
  272. Slide with Header with Background. Defaults to 7rem. Modifies the
  273. \code{.remark-slide-content} class.}
  274. \item{header_background_ignore_classes}{Slide Classes Where Header with
  275. Background will not be Applied. Defaults to
  276. \code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. Modifies the
  277. \code{.remark-slide-content} class.}
  278. \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
  279. 0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
  280. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  281. property values.}
  282. \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
  283. to \code{NULL}. Modifies the \code{body} element.}
  284. \item{text_font_family}{Body Text Font Family (xaringan default is
  285. \code{'Droid Serif'}). Defaults to
  286. \code{xaringanthemer_font_default("text_font_family")}. Modifies the \code{body}
  287. element. The value of this variable is also stored as a CSS variable that
  288. can be referenced with \code{var(--text-font-family)} in any argument of a
  289. style function or in custom CSS.}
  290. \item{text_font_weight}{Body Text Font Weight. Defaults to
  291. \code{xaringanthemer_font_default("text_font_weight")}. Modifies the \code{body}
  292. element. Accepts CSS
  293. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
  294. property values.}
  295. \item{text_font_url}{Body Text Font URL(s). Defaults to
  296. \code{xaringanthemer_font_default("text_font_url")}. Modifies the
  297. \verb{@import url()} elements.}
  298. \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
  299. \code{xaringanthemer_font_default("text_font_family_fallback")}. Modifies the
  300. \code{body} element. The value of this variable is also stored as a CSS
  301. variable that can be referenced with \code{var(--text-font-family-fallback)} in
  302. any argument of a style function or in custom CSS.}
  303. \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
  304. to sans-serif. Modifies the \code{body} element. The value of this variable is
  305. also stored as a CSS variable that can be referenced with
  306. \code{var(--text-font-base)} in any argument of a style function or in custom
  307. CSS.}
  308. \item{header_font_google}{Use \code{google_font()} to specify header font.
  309. Defaults to \code{NULL}. Modifies the \code{body} element.}
  310. \item{header_font_family}{Header Font Family (xaringan default is
  311. \code{'Yanone Kaffeesatz'}). Defaults to
  312. \code{xaringanthemer_font_default("header_font_family")}. Modifies the
  313. \verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
  314. variable that can be referenced with \code{var(--header-font-family)} in any
  315. argument of a style function or in custom CSS.}
  316. \item{header_font_weight}{Header Font Weight. Defaults to
  317. \code{xaringanthemer_font_default("header_font_weight")}. Modifies the
  318. \verb{h1, h2, h3} elements. Accepts CSS
  319. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
  320. property values.}
  321. \item{header_font_family_fallback}{Header Font Family Fallback. Defaults to
  322. Georgia, serif. Modifies the \verb{h1, h2, h3} elements. The value of this
  323. variable is also stored as a CSS variable that can be referenced with
  324. \code{var(--header-font-family-fallback)} in any argument of a style function
  325. or in custom CSS.}
  326. \item{header_font_url}{Header Font URL. Defaults to
  327. \code{xaringanthemer_font_default("header_font_url")}. Modifies the
  328. \verb{@import url} elements.}
  329. \item{code_font_google}{Use \code{google_font()} to specify code font. Defaults
  330. to \code{NULL}. Modifies the \code{body} element.}
  331. \item{code_font_family}{Code Font Family. Defaults to
  332. \code{xaringanthemer_font_default("code_font_family")}. Modifies the
  333. \verb{.remark-code, .remark-inline-code} classes. The value of this variable is
  334. also stored as a CSS variable that can be referenced with
  335. \code{var(--code-font-family)} in any argument of a style function or in custom
  336. CSS.}
  337. \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
  338. \code{.remark-inline} class. Accepts CSS
  339. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  340. property values. The value of this variable is also stored as a CSS
  341. variable that can be referenced with \code{var(--code-font-size)} in any
  342. argument of a style function or in custom CSS.}
  343. \item{code_font_url}{Code Font URL. Defaults to
  344. \code{xaringanthemer_font_default("code_font_url")}. Modifies the \verb{@import url}
  345. elements.}
  346. \item{code_font_family_fallback}{Code Font Fallback. Defaults to
  347. \code{xaringanthemer_font_default("code_font_family_fallback")}. Modifies the
  348. \verb{.remark-code, .remark-inline-code} classes.}
  349. \item{colors}{A named vector of custom colors. The names of the colors
  350. become CSS variables and classes that can be used within your slides.
  351. For example, \code{colors = c(blue = "#bad4ed")} adds a CSS variable
  352. \code{--blue}, a \code{.blue} CSS class that applies the color to the text or
  353. foreground color, and a \code{.bg-blue} CSS class that applies the color
  354. to the background.}
  355. \item{extra_css}{A named list of CSS definitions each containing a named list
  356. of CSS property-value pairs, i.e.
  357. \code{list(".class-id" = list("css-property" = "value"))}.}
  358. \item{extra_fonts}{A list of additional fonts to import, each list element
  359. can be either a URL as a character string or a call to
  360. \code{\link{google_font}()}. To use a font imported in \code{extra_fonts}, you
  361. will need to write custom CSS rules that apply the font to an element or
  362. class with the \code{font-family} property. See the \strong{Fonts} section of
  363. \code{vignette("xaringanthemer")} for an example.}
  364. \item{outfile}{Customized xaringan CSS output file name, default is "xaringan-themer.css"}
  365. }
  366. \value{
  367. The CSS styles are written to the file path provided in \code{outfile}
  368. (by default to \code{xaringan-themer.css}). If \code{outfile} is \code{NULL}, the CSS is
  369. returned directly as a character string.
  370. }
  371. \description{
  372. A dark monotone theme based around a single color.
  373. }
  374. \section{Usage}{
  375. To use the styles created by this theme function, make sure
  376. that you use \code{xaringan-themer.css} as your CSS file in your slides' YAML
  377. header. If you change the name of the output file using the \code{outfile}
  378. argument, use that name instead of the default file name.\if{html}{\out{<div class="yaml">}}\preformatted{output:
  379. xaringan::moon_reader:
  380. css: xaringan-themer.css
  381. }\if{html}{\out{</div>}}
  382. }
  383. \examples{
  384. # Create a xaringan style in a temporary file
  385. xaringan_themer_css <- tempfile("xaringan-themer-", fileext = ".css")
  386. style_mono_dark(
  387. base_color = "#cbf7ed",
  388. outfile = xaringan_themer_css # omit in your slides to write the
  389. # styles to xaringan-themer.css
  390. )
  391. # View the CSS:
  392. # file.edit(xaringan_themer_css)
  393. }
  394. \seealso{
  395. Other themes:
  396. \code{\link{style_duo_accent_inverse}()},
  397. \code{\link{style_duo_accent}()},
  398. \code{\link{style_duo}()},
  399. \code{\link{style_mono_accent_inverse}()},
  400. \code{\link{style_mono_accent}()},
  401. \code{\link{style_mono_light}()},
  402. \code{\link{style_solarized_dark}()},
  403. \code{\link{style_solarized_light}()},
  404. \code{\link{xaringanthemer_font_default}()}
  405. Other Monotone themes:
  406. \code{\link{style_mono_accent_inverse}()},
  407. \code{\link{style_mono_accent}()},
  408. \code{\link{style_mono_light}()}
  409. }
  410. \concept{Monotone themes}
  411. \concept{themes}