yoyurec / logseq-awesome-styler

🎨 Totally customizable theme with presets: colors, backgrounds, fonts and sizes, etc... Logseq plugin
MIT License
183 stars 9 forks source link

Background overlay does not change when modifying custom.css #21

Closed Xemnas0 closed 2 years ago

Xemnas0 commented 2 years ago

Info:

Description: Changing the background color does not display the correct color and instead always displays a dark background.

To Reproduce: The following in the custom.css

:root {
        --bg-url: none;
        --bg-overlay: #f2c073;
    }

Expected behavior: Background should be yellowish.

Screenshots image

yoyurec commented 2 years ago

ups, wrong documentation. updated

    :root {
        --bg-url: none;
    }
    .light,
    .light-theme,
    html[data-theme='light'] {
        --bg-overlay: #77777777 !important;
    }
    .dark,
    .dark-theme,
    html[data-theme='dark'] {
        --bg-overlay: #1a1a1a99 !important;
    }