😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

483 lines
22KB

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