Skip to content

Commit 2c2be1c

Browse files
authored
docs: theming options (#960)
1 parent 997e5c0 commit 2c2be1c

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

docs/configuration/settings.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,20 @@ UNFOLD = {
5353
"SCRIPTS": [
5454
lambda request: static("js/script.js"),
5555
],
56+
"BORDER_RADIUS": "6px",
5657
"COLORS": {
57-
"font": {
58-
"subtle-light": "107 114 128",
59-
"subtle-dark": "156 163 175",
60-
"default-light": "75 85 99",
61-
"default-dark": "209 213 219",
62-
"important-light": "17 24 39",
63-
"important-dark": "243 244 246",
58+
"base": {
59+
"50": "249 250 251",
60+
"100": "243 244 246",
61+
"200": "229 231 235",
62+
"300": "209 213 219",
63+
"400": "156 163 175",
64+
"500": "107 114 128",
65+
"600": "75 85 99",
66+
"700": "55 65 81",
67+
"800": "31 41 55",
68+
"900": "17 24 39",
69+
"950": "3 7 18",
6470
},
6571
"primary": {
6672
"50": "250 245 255",
@@ -75,6 +81,14 @@ UNFOLD = {
7581
"900": "88 28 135",
7682
"950": "59 7 100",
7783
},
84+
"font": {
85+
"subtle-light": "var(--color-base-500)", # text-base-500
86+
"subtle-dark": "var(--color-base-400)", # text-base-400
87+
"default-light": "var(--color-base-600)", # text-base-600
88+
"default-dark": "var(--color-base-300)", # text-base-300
89+
"important-light": "var(--color-base-900)", # text-base-900
90+
"important-dark": "var(--color-base-100)", # text-base-100
91+
},
7892
},
7993
"EXTENSIONS": {
8094
"modeltranslation": {

0 commit comments

Comments
 (0)