From bc27a01b33537b03a7ada672f05c2f4d19c9c20b Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sat, 19 Nov 2022 16:11:14 +0100 Subject: [PATCH] Move color definition --- themes/custom-learn2-dark/css/custom.css | 4 ++-- .../custom-learn2-dark/scss/configuration/theme/_colors.scss | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 themes/custom-learn2-dark/scss/configuration/theme/_colors.scss diff --git a/themes/custom-learn2-dark/css/custom.css b/themes/custom-learn2-dark/css/custom.css index ed4a92d..6a68726 100644 --- a/themes/custom-learn2-dark/css/custom.css +++ b/themes/custom-learn2-dark/css/custom.css @@ -51,10 +51,10 @@ Put your custom CSS in this file. } /* full content */ -body { +/*body { background: #111111; color: #dddddd; -} +}*/ /* code blocks */ pre[class*="language-"] { diff --git a/themes/custom-learn2-dark/scss/configuration/theme/_colors.scss b/themes/custom-learn2-dark/scss/configuration/theme/_colors.scss new file mode 100644 index 0000000..65f339c --- /dev/null +++ b/themes/custom-learn2-dark/scss/configuration/theme/_colors.scss @@ -0,0 +1,5 @@ +// Core +$core-text: #dddddd; + +// Background +$page-bg: #111111;