😎 Give your xaringan slides some style
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

488 rindas
22KB

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