Merge branch 'master' of github.com:martinrotter/rssguard

This commit is contained in:
Martin Rotter 2022-12-02 07:39:53 +01:00
commit b3959a648d
4 changed files with 54 additions and 51 deletions

View File

@ -155,14 +155,14 @@ blockquote {
} }
blockquote, blockquote,
blockquote p { blockquote p {
color: #D8D8D8; color: #E2E2E2;
} }
pre, pre,
code { code {
border: 1px solid #282a2c; border: 1px solid #282a2c;
border-radius: 0.3em; border-radius: 0.3em;
color: #D8D8D8; color: #E2E2E2;
font-family: monospace; font-family: monospace;
font-size: .95rem !important; font-size: .95rem !important;
} }
@ -464,7 +464,7 @@ body::-webkit-scrollbar-corner {
border-radius: 0 0.3em 0.3em 0; border-radius: 0 0.3em 0.3em 0;
} }
/* Please enable JS for additional font-colouring features */ /* Please enable JS for additional colouring features */
:root { :root {
--rssguard-red: 0; --rssguard-red: 0;
--rssguard-green: 0; --rssguard-green: 0;
@ -488,7 +488,7 @@ body::-webkit-scrollbar-corner {
body, body,
::selection, ::selection,
mark, code, pre, pre > code, mark, code, pre, pre > code,
blockquote { blockquote, blockquote p {
color: hsla(0, 0%, calc( ( var(--rssguard-perceived-lightness) - var(--rssguard-threshold) ) * -10000000% ), 0.9); color: hsla(0, 0%, calc( ( var(--rssguard-perceived-lightness) - var(--rssguard-threshold) ) * -10000000% ), 0.9);
} }

View File

@ -4,23 +4,17 @@ $qtbg-base: #373A3D !default; // clr_basbg
$qtbg-button: #323437 !default; // clr_altbg // button bg (scrollbar, alt bg) $qtbg-button: #323437 !default; // clr_altbg // button bg (scrollbar, alt bg)
$qcselbg: #8291AD !default; // clr_selbg $qcselbg: #8291AD !default; // clr_selbg
// // {{{ Emulate Fusion colour processing (dark only)
// Emulate fusion colour processing (dark only)
//
//
// Scrollbar colours // Scrollbar colours
//
//$qcbgbg: lighten($qtbg-button, 6%); // See toolbar bg //$qcbgbg: lighten($qtbg-button, 6%); // See toolbar bg
$bgscroll: lighten($qtbg-button, 2%) !default; // track and corner bg $bgscroll: lighten($qtbg-button, 2%) !default; // track and corner bg
$tr-border: darken($qtbg-button, 4%) !default; // track brdr $tr-border: darken($qtbg-button, 4%) !default; // track brdr
// // {{{ Scrollbar thumb
// Scrollbar thumb
//
// bg gradient // Thumb bg gradient
// Normal // Normal
$thscrlin: lighten($qtbg-button, 6%) !default; $thscrlin: lighten($qtbg-button, 6%) !default;
@ -33,17 +27,19 @@ $thscrlhvout: $thscrlout;
// Light outline // Light outline
$th-border: lighten($qtbg-button, 15%) !default; $th-border: lighten($qtbg-button, 15%) !default;
// // }}}
// HTML palette (Colours)
// // }}}
// {{{ HTML palette (Colours)
$cbg00: $qtbg-base; $cbg00: $qtbg-base;
// Irrelevant, because fg is overridden by the switcher ~~~ // {{{ Irrelevant, because colour switcher (see below) overrides all fg colours (either with JS on or off)
$cfg00: #f5f5f5 !default; $cfg00: #f5f5f5 !default;
$cfg10: #D8D8D8 !default; $cfg10: #E2E2E2 !default;
$cfg11: $cfg10; $cfg11: $cfg10;
// ~~~ // }}}
$cbor2: #545556 !default; $cbor2: #545556 !default;
@ -54,9 +50,9 @@ $cmark: #f8d08c66 !default; // 40% transparency
$clink: $qcselbg; $clink: $qcselbg;
// // }}}
// Other // Other
//
$radius-unit: .3em !default; $radius-unit: .3em !default;
@ -65,14 +61,12 @@ $radius-unit: .3em !default;
; ;
// //
// Dark HTML-style has following additions: // Dark CSS style has following additions:
// //
// // {{{ Border around viewport
// Border around viewport
// https://csswizardry.com/2010/12/simplified-page-borders-in-pure-css/ // https://csswizardry.com/2010/12/simplified-page-borders-in-pure-css/
//
html::before, html::before,
html::after, html::after,
@ -113,9 +107,9 @@ body::after {
left: 0; left: 0;
} }
// // }}}
// Enhanced scrollbar
// // {{{ Dark-coloured scrollbar
::-webkit-scrollbar { ::-webkit-scrollbar {
height: 13px; height: 13px;
@ -212,7 +206,7 @@ $th-outline:
} }
} }
// More complete borders for `body` scrollbar // Complete the borders for body scrollbar
body::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-track { body::-webkit-scrollbar-track {
@ -259,14 +253,14 @@ body::-webkit-scrollbar-corner {
} }
} }
// // }}}
// Font colour switcher
// Thank you so much!! // {{{ Fg colour switcher
// https://css-tricks.com/switch-font-color-for-different-backgrounds-with-css/
//
/* Please enable JS for additional font-colouring features */ // Thank you so much!!
// https://css-tricks.com/switch-font-color-for-different-backgrounds-with-css/
/* Please enable JS for additional colouring features */
:root { :root {
// Default RGB values for background colour // Default RGB values for background colour
--rssguard-red: 0; --rssguard-red: 0;
@ -296,7 +290,7 @@ body::-webkit-scrollbar-corner {
body, body,
::selection, ::selection,
mark, code, pre, pre > code, mark, code, pre, pre > code,
blockquote { blockquote, blockquote p { // TODO: why did not I add 'blockquote p' here before?
color: color:
hsla( hsla(
0, 0,
@ -311,3 +305,5 @@ blockquote {
.9 .9
); );
} }
// }}}
// vim:foldmethod=marker

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<skin version="0.1.4" base="nudus-base"> <skin version="0.1.5" base="nudus-base">
<author> <author>
<name>akinokonomi, martinrotter</name> <name>akinokonomi, martinrotter</name>
</author> </author>
<description>Dark variant of 'nudus-light' skin.</description> <description>Dark variation of a simple, unclothed theme.</description>
<palette> <palette>
<color key="FgInteresting">#85ACF6</color> <color key="FgInteresting">#F2F2F2</color>
<color key="FgSelectedInteresting">#D9E3F7</color> <color key="FgSelectedInteresting">#FFFFFF</color>
<color key="FgNewMessages">#c684f4</color> <color key="FgNewMessages">#85ACF6</color>
<color key="FgSelectedNewMessages">#d3a3f4</color> <color key="FgSelectedNewMessages">#D9E3F7</color>
<color key="FgError">#DF5656</color> <color key="FgError">#DF5656</color>
<color key="FgSelectedError">#910303</color> <color key="FgSelectedError">#910303</color>
<color key="Allright">#44AA44</color> <color key="Allright">#44AA44</color>
@ -30,7 +30,7 @@
<color role="Window">#2D2F32</color> <color role="Window">#2D2F32</color>
<color role="Button">#323437</color> <color role="Button">#323437</color>
<color role="Text">#D8D8D8</color> <color role="Text">#E2E2E2</color>
<color role="BrightText">#373A3D</color> <color role="BrightText">#373A3D</color>
<color role="HighlightedText">#FFFFFF</color> <color role="HighlightedText">#FFFFFF</color>
<color role="PlaceholderText">#A7A7A7</color> <color role="PlaceholderText">#A7A7A7</color>
@ -49,4 +49,7 @@
<color role="WindowText">#999999</color> <color role="WindowText">#999999</color>
</group> </group>
</style-palette> </style-palette>
</skin> </skin>
<!--
vim:ts=2:sw=2:et:
-->

View File

@ -1,17 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<skin version="0.1.4" base="nudus-base"> <skin version="0.1.5" base="nudus-base">
<author> <author>
<name>akinokonomi, martinrotter</name> <name>akinokonomi, martinrotter</name>
</author> </author>
<description>Simple, unclothed theme.&#xA;In loving memory of the vergilius (not a person).</description>
<palette> <palette>
<color key="FgInteresting">#3A6FE4</color> <color key="FgInteresting">#11204F</color>
<color key="FgSelectedInteresting">#F0F2FC</color> <color key="FgSelectedInteresting">#FFFFFF</color>
<color key="FgNewMessages">#cc39e2</color> <color key="FgNewMessages">#3A6FE4</color>
<color key="FgSelectedNewMessages">#d57fe2</color> <color key="FgSelectedNewMessages">#F0F2FC</color>
<color key="FgError">#E74343</color> <color key="FgError">#E74343</color>
<color key="FgSelectedError">#FFD7D7</color> <color key="FgSelectedError">#FFD7D7</color>
<color key="Allright">#77dd77</color> <color key="Allright">#77dd77</color>
</palette> </palette>
<forced-styles></forced-styles> <forced-styles></forced-styles>
<forced-skin-colors>false</forced-skin-colors> <forced-skin-colors>false</forced-skin-colors>
</skin> </skin>
<!--
vim:ts=2:sw=2:et:
-->