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

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