aboutsummaryrefslogtreecommitdiff
path: root/Configuration.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-13 14:30:22 +0000
committerFuwn <[email protected]>2024-06-13 14:30:22 +0000
commite02923bfe473b474a0b8ea96509a0cbda501e0dc (patch)
tree07a4e167aa3b51fd7d0b1020e9d3cdd54b13a799 /Configuration.md
parentrefactor(url): use unwrap instead of map (diff)
downloadseptember-e02923bfe473b474a0b8ea96509a0cbda501e0dc.tar.xz
september-e02923bfe473b474a0b8ea96509a0cbda501e0dc.zip
feat: custom primary colour variable
Diffstat (limited to 'Configuration.md')
-rw-r--r--Configuration.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/Configuration.md b/Configuration.md
index b461b7e..4815e13 100644
--- a/Configuration.md
+++ b/Configuration.md
@@ -144,3 +144,19 @@ A comma-separated list of paths will condense adjacent links to a single line on
<!-- Condensed -->
<p><a href="/">Link</a> | <a href="/">Link</a> | <a href="/">Link</a></p>
```
+
+## `PRIMARY_COLOUR`
+
+Set the primary colour of elements in the default stylesheet. This field
+controls the colour of items such as links and highlights.
+
+Popular choices are `var(--base0D)` for a blue, or `var(--base09)` for an
+amber colour.
+
+### Examples
+
+```plaintext
+PRIMARY_COLOUR=var(--base09)
+PRIMARY_COLOUR=red
+PRIMARY_COLOUR=#ff0000
+```