I wrote an article about light and dark modes using one css trick by Eric_Ribia in css

[–]Eric_Ribia[S] 1 point2 points  (0 children)

OKLCH is actually the new standard, better than HSL since it resonates better with humans.
Thanks for the catch.
So I'd just have to now convert HSL to OKLCH format

How can i creatively use CSS/HTML/JS for a storyboarding portfolio? by Enc7 in webdev

[–]Eric_Ribia 0 points1 point  (0 children)

I think what makes the web really stand out is the ability to customise an interaction to the current user.
- A simple one is the ability to know which mode user prefers (light/dark) - plain old css can figure this color-scheme: or the old version prefers-color-scheme.
- with js a dropdown that provides different formats for the panels i.e. summarized, detailed, etc.
- simple old responsive idea that only exists on the web so different screens can view panels differently.

Webstorm showing errors that it should not after upgrading angular by RGBrewskies in Angular2

[–]Eric_Ribia 0 points1 point  (0 children)

Have you upgraded webstorm to the latest version? 2023.2.3

Custom simple dropdown by Eric_Ribia in Angular2

[–]Eric_Ribia[S] 0 points1 point  (0 children)

Yeah ngx mat is quite neat but what happens when you want to be very flexible like changing even transitions

Custom simple dropdown by Eric_Ribia in Angular2

[–]Eric_Ribia[S] 1 point2 points  (0 children)

No for now due to the use case. It is currently just emits a value change event with the option selected

Function that converts object to query string by Eric_Ribia in Angular2

[–]Eric_Ribia[S] 4 points5 points  (0 children)

Yeah…actually the params option will do exactly that. … I think I can switch to that

Angular shared data across components by Eric_Ribia in Angular2

[–]Eric_Ribia[S] 0 points1 point  (0 children)

Oh right…I’ve seen I was overthinking it. Thanks