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

482 lines
22KB

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