😎 Give your xaringan slides some style
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

494 linhas
23KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/style_mono_accent_inverse.R
  3. \name{style_mono_accent_inverse}
  4. \alias{style_mono_accent_inverse}
  5. \title{Monotone Accent Inverse Theme}
  6. \usage{
  7. style_mono_accent_inverse(
  8. base_color = "#3C989E",
  9. white_color = "#FFFFFF",
  10. black_color = darken_color(base_color, 0.9),
  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 = 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 = darken_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 light color.
  82. Defaults to #3C989E. 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 #FFFFFF. Used in multiple CSS rules. The value
  87. of this variable is also stored as a CSS variable that can be referenced
  88. with \code{var(--white)} in any argument of a 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.9)}. 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
  166. \code{inverse_text_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3}
  167. classes. The value of this variable is also stored as a CSS variable that
  168. can be referenced with \code{var(--inverse-header-color)} in any argument of a
  169. style function or in 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.8)}. 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.9rem. 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_bold_font_weight}{Body Bold Text Font Weight. Defaults to bold.
  296. Modifies the \code{strong} element.}
  297. \item{text_font_url}{Body Text Font URL(s). Defaults to
  298. \code{xaringanthemer_font_default("text_font_url")}. Modifies the
  299. \verb{@import url()} elements.}
  300. \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
  301. \code{xaringanthemer_font_default("text_font_family_fallback")}. Modifies the
  302. \code{body} element. The value of this variable is also stored as a CSS
  303. variable that can be referenced with \code{var(--text-font-family-fallback)} in
  304. any argument of a style function or in custom CSS.}
  305. \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
  306. to sans-serif. Modifies the \code{body} element. The value of this variable is
  307. also stored as a CSS variable that can be referenced with
  308. \code{var(--text-font-base)} in any argument of a style function or in custom
  309. CSS.}
  310. \item{header_font_google}{Use \code{google_font()} to specify header font.
  311. Defaults to \code{NULL}. Modifies the \code{body} element.}
  312. \item{header_font_family}{Header Font Family (xaringan default is
  313. \code{'Yanone Kaffeesatz'}). Defaults to
  314. \code{xaringanthemer_font_default("header_font_family")}. Modifies the
  315. \verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
  316. variable that can be referenced with \code{var(--header-font-family)} in any
  317. argument of a style function or in custom CSS.}
  318. \item{header_font_weight}{Header Font Weight. Defaults to
  319. \code{xaringanthemer_font_default("header_font_weight")}. Modifies the
  320. \verb{h1, h2, h3} elements. Accepts CSS
  321. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
  322. property values.}
  323. \item{header_font_family_fallback}{Header Font Family Fallback. Defaults to
  324. Georgia, serif. Modifies the \verb{h1, h2, h3} elements. The value of this
  325. variable is also stored as a CSS variable that can be referenced with
  326. \code{var(--header-font-family-fallback)} in any argument of a style function
  327. or in custom CSS.}
  328. \item{header_font_url}{Header Font URL. Defaults to
  329. \code{xaringanthemer_font_default("header_font_url")}. Modifies the
  330. \verb{@import url} elements.}
  331. \item{code_font_google}{Use \code{google_font()} to specify code font. Defaults
  332. to \code{NULL}. Modifies the \code{body} element.}
  333. \item{code_font_family}{Code Font Family. Defaults to
  334. \code{xaringanthemer_font_default("code_font_family")}. Modifies the
  335. \verb{.remark-code, .remark-inline-code} classes. The value of this variable is
  336. also stored as a CSS variable that can be referenced with
  337. \code{var(--code-font-family)} in any argument of a style function or in custom
  338. CSS.}
  339. \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
  340. \code{.remark-inline} class. Accepts CSS
  341. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
  342. property values. The value of this variable is also stored as a CSS
  343. variable that can be referenced with \code{var(--code-font-size)} in any
  344. argument of a style function or in custom CSS.}
  345. \item{code_font_url}{Code Font URL. Defaults to
  346. \code{xaringanthemer_font_default("code_font_url")}. Modifies the \verb{@import url}
  347. elements.}
  348. \item{code_font_family_fallback}{Code Font Fallback. Defaults to
  349. \code{xaringanthemer_font_default("code_font_family_fallback")}. Modifies the
  350. \verb{.remark-code, .remark-inline-code} classes.}
  351. \item{link_decoration}{Text decoration of links. Defaults to none. Modifies
  352. the \verb{a, a > code} elements. Accepts CSS
  353. \href{https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration}{text-decoration}
  354. property values.}
  355. \item{colors}{A named vector of custom colors. The names of the colors
  356. become CSS variables and classes that can be used within your slides.
  357. For example, \code{colors = c(blue = "#bad4ed")} adds a CSS variable
  358. \code{--blue}, a \code{.blue} CSS class that applies the color to the text or
  359. foreground color, and a \code{.bg-blue} CSS class that applies the color
  360. to the background.}
  361. \item{extra_css}{A named list of CSS definitions each containing a named list
  362. of CSS property-value pairs, i.e.
  363. \code{list(".class-id" = list("css-property" = "value"))}.}
  364. \item{extra_fonts}{A list of additional fonts to import, each list element
  365. can be either a URL as a character string or a call to
  366. \code{\link{google_font}()}. To use a font imported in \code{extra_fonts}, you
  367. will need to write custom CSS rules that apply the font to an element or
  368. class with the \code{font-family} property. See the \strong{Fonts} section of
  369. \code{vignette("xaringanthemer")} for an example.}
  370. \item{outfile}{Customized xaringan CSS output file name, default is "xaringan-themer.css"}
  371. }
  372. \value{
  373. The CSS styles are written to the file path provided in \code{outfile}
  374. (by default to \code{xaringan-themer.css}). If \code{outfile} is \code{NULL}, the CSS is
  375. returned directly as a character string.
  376. }
  377. \description{
  378. An "inverted" default xaringan theme with a single color used
  379. for color accents on select elements (headers, bold text, etc.).
  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_accent_inverse(
  395. base_color = "#3c989e",
  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_dark}()},
  409. \code{\link{style_mono_light}()},
  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_dark}()},
  416. \code{\link{style_mono_light}()}
  417. }
  418. \concept{Monotone themes}
  419. \concept{themes}