Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-colors.yml
12921 views
1
- name: fontcolor
2
schema: string
3
tags:
4
formats: [$html-doc]
5
description: Sets the CSS `color` property.
6
7
- name: linkcolor
8
schema: string
9
tags:
10
formats: [$html-doc, context, $pdf-all, typst]
11
description:
12
short: Sets the color of hyperlinks in the document.
13
long: |
14
For HTML output, sets the CSS `color` property on all links.
15
16
For LaTeX output, The color used for internal links using color options
17
allowed by [`xcolor`](https://ctan.org/pkg/xcolor),
18
including the `dvipsnames`, `svgnames`, and
19
`x11names` lists.
20
21
For ConTeXt output, sets the color for both external links and links within the document.
22
23
For Typst output, sets the color of internal hyperlinks using Typst color syntax.
24
25
- name: monobackgroundcolor
26
schema: string
27
tags:
28
formats: [html, html4, html5, slidy, slideous, s5, dzslides]
29
description: Sets the CSS `background-color` property on code elements and adds extra padding.
30
31
- name: backgroundcolor
32
schema: string
33
tags:
34
formats: [$html-doc]
35
description: |
36
Sets the CSS `background-color` property on the html element.
37
38
- name: filecolor
39
schema: string
40
tags:
41
formats: [$pdf-all, typst]
42
description:
43
short: The color used for external links.
44
long: |
45
For LaTeX output, the color used for external links using color options
46
allowed by [`xcolor`](https://ctan.org/pkg/xcolor),
47
including the `dvipsnames`, `svgnames`, and
48
`x11names` lists.
49
50
For Typst output, sets the color of external file links using Typst color syntax.
51
52
- name: citecolor
53
schema: string
54
tags:
55
formats: [$pdf-all, typst]
56
description:
57
short: The color used for citation links.
58
long: |
59
For LaTeX output, the color used for citation links using color options
60
allowed by [`xcolor`](https://ctan.org/pkg/xcolor),
61
including the `dvipsnames`, `svgnames`, and
62
`x11names` lists.
63
64
For Typst output, sets the color of citation links using Typst color syntax.
65
66
- name: urlcolor
67
schema: string
68
tags:
69
formats: [$pdf-all]
70
description:
71
short: The color used for linked URLs using color options allowed by `xcolor`
72
long: |
73
The color used for linked URLs using color options
74
allowed by [`xcolor`](https://ctan.org/pkg/xcolor),
75
including the `dvipsnames`, `svgnames`, and
76
`x11names` lists.
77
78
- name: toccolor
79
schema: string
80
tags:
81
formats: [$pdf-all]
82
description:
83
short: The color used for links in the Table of Contents using color options allowed by `xcolor`
84
long: |
85
The color used for links in the Table of Contents using color options
86
allowed by [`xcolor`](https://ctan.org/pkg/xcolor),
87
including the `dvipsnames`, `svgnames`, and
88
`x11names` lists.
89
90
- name: colorlinks
91
schema: boolean
92
tags:
93
formats: [$pdf-all]
94
default: true
95
description: |
96
Add color to link text, automatically enabled if any of
97
`linkcolor`, `filecolor`, `citecolor`, `urlcolor`, or `toccolor` are set.
98
99
- name: contrastcolor
100
schema: string
101
tags:
102
formats: [context]
103
description:
104
short: Color for links to other content within the document.
105
long: |
106
Color for links to other content within the document.
107
108
See [ConTeXt Color](https://wiki.contextgarden.net/Color) for additional information.
109
110