Changes for page Most Important Configurations
Last modified by chrisby on 2024/03/30 17:19
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -69,3 +69,23 @@ 69 69 The contents of this website are available under the [CC0 1.0 Universal license](https://creativecommons.org/publicdomain/zero/1.0/deed.en); additional terms may apply. 70 70 The contents of this website are available under the [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/); additional terms may apply. 71 71 ``` 72 + 73 +** Dark Theme** 74 + 75 +* Look & Feel > Themes > Color Theme > COLOR_THEMES 76 + * Manage Color Themes > "Darkly" Theme > Use this theme 77 + * Customize > Advanced > Add the following code at the end and then "Save & View": 78 + 79 +```CSS 80 +// Own customizations 81 +#var-lessCode, 82 +.macro-parameter-field textarea, 83 +.code span, 84 +.xwikipaneltitle { 85 + color: #ffffff !important; 86 +} 87 + 88 +h1, h2, h3, h4, h5, h6 { 89 + color: orange !important; 90 +} 91 +```