😎 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.

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