diff --git a/assets/css/stipplecore.css b/assets/css/stipplecore.css index 6871134..12c25fa 100644 --- a/assets/css/stipplecore.css +++ b/assets/css/stipplecore.css @@ -121,6 +121,10 @@ width: 100%; } +.stipple-core ._genie_logo{ + margin-left: 5px; +} + /*=================================================================== LAYOUT ================================================================== */ diff --git a/assets/css/themes/theme-default-dark.css b/assets/css/themes/theme-default-dark.css index 2529939..bd5202e 100644 --- a/assets/css/themes/theme-default-dark.css +++ b/assets/css/themes/theme-default-dark.css @@ -58,6 +58,8 @@ --q-white: var(--st-color-white); --q-black: var(--st-color-black); --q-dark-page: var(--st-color-dark-page); + --st-filter-light: none; + --st-filter-dark: invert(1) saturate(0) brightness(2); } a{ color: var(--st-color-primary); @@ -80,6 +82,9 @@ :root.stipple-core h6{ font-size: var(--st-font-size-md); } + :root.stipple-core ._genie_logo{ + filter: var(--st-filter-dark); + } diff --git a/assets/css/themes/theme-default-light.css b/assets/css/themes/theme-default-light.css index 9c99aa0..73473c1 100644 --- a/assets/css/themes/theme-default-light.css +++ b/assets/css/themes/theme-default-light.css @@ -59,6 +59,8 @@ --q-white: var(--st-color-white); --q-black: var(--st-color-black); --q-dark-page: var(--st-color-dark-page); + --st-filter-light: none; + --st-filter-dark: invert(1) saturate(0) brightness(2); } a{ color: var(--st-color-primary); @@ -81,6 +83,9 @@ :root.stipple-core h6{ font-size: var(--st-font-size-md); } + :root.stipple-core ._genie_logo{ + filter: var(--st-filter-light); + }