😎 Give your xaringan slides some style
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

493 líneas
23KB

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