From 631a655e0aad93cf9b0c1c6d9bcaadeede3a7aaf Mon Sep 17 00:00:00 2001 From: simonpipe Date: Thu, 12 Mar 2026 09:11:19 +0100 Subject: [PATCH] Update sermon.css --- sermon.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sermon.css b/sermon.css index 997263e..5c1f048 100644 --- a/sermon.css +++ b/sermon.css @@ -18,15 +18,15 @@ Original License: MIT (https://github.com/rnd195/my-marp-themes/blob/live/licens --colorh5: #393552; --colorh6: #842174; --colortext: #393552; + --colorleadh2: #333; + --colorleadtext: #333; + --colorleadborder: #333; --colorbottombar: #842174; --colorcite: #842174; --mark: #84217427; - --white: #ffffff; - --white68: #ffffffad; - --white50: #ffffff80; - --verydarkgray: #333; - --black: #000; - + --colorprecode: #ffffff80; + --colorblockquote: #000; + --colorbg: #ffffff; --gradient-start: #e1c2e1; --gradient-end: #b9d5d9; --gradient-direction: to top right; @@ -37,7 +37,7 @@ Original License: MIT (https://github.com/rnd195/my-marp-themes/blob/live/licens /* --- BACKGROUND --- */ section { - background-color: var(--white); + background-color: var(--colorbg); background-image: linear-gradient(to top right, #e1c2e1 5%, #b9d5d9 95%); background-image: linear-gradient(var(--gradient-direction), var(--gradient-start) 5%, var(--gradient-end) 95%); font-size: 35px; /* Basisschriftgröße für die gesamte Folie */ @@ -75,7 +75,7 @@ code, pre, pre code { font-family: 'Ubuntu Mono', monospace !important; - background-color: var(--white50); + background-color: var(--colorprecode); } mark { @@ -90,7 +90,7 @@ blockquote { padding: 0; font-size: 1em; line-height: 1.5; - color: var(--black); + color: var(--colorblockquote); } blockquote cite { @@ -128,10 +128,10 @@ section.lead h1 { section.lead h2 { font-size: 1.6em; - color: var(--verydarkgray); + color: var(--colorleadh2); /* Die Linie */ - border-top: 3px solid var(--verydarkgray); /* Linie */ + border-top: 3px solid var(--colorleadborder); /* Linie */ padding-top: 0.8em; /* Abstand zwischen Linie und Text */ margin-top: 0.5em; /* Abstand zwischen H1 und Linie */ @@ -143,7 +143,7 @@ section.lead h2 { section.lead p { font-size: 1.3em; - color: var(--verydarkgray); + color: var(--colorleadtext); }