videopalace 28 Posted May 18, 2022 Posted May 18, 2022 Is there a possibility to set a custom accent color for Emby server 4.7.0.60? Or can it be adjusted via CSS? The previous tweak no longer works (by adding accent color selection option in the latest server build)
chef 3808 Posted May 18, 2022 Posted May 18, 2022 Have you tried targeting the custom variable in the css? I think it is called "--theme-primary-color"
Solution Happy2Play 9444 Posted May 18, 2022 Solution Posted May 18, 2022 It is hsl now so override or target accent. html:root { --theme-primary-color-hue: 218!important; --theme-primary-color-saturation: 89%!important; --theme-primary-color-lightness: 44%!important; } html.accent-blue:root { --theme-primary-color-hue: 218; --theme-primary-color-saturation: 89%; --theme-primary-color-lightness: 44%; }
chef 3808 Posted May 18, 2022 Posted May 18, 2022 The dev tools in chrome do not play nicely with hsl written with custom css variables. I'm starting to miss the little color square.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now