How to change color scheme using liquid

Simple as the subject line,

How do I, using liquid, the programming language shopify themes use, change the color scheme of my webpage?

It’s a simple solution to implement the dark theme.

I want to make a button, on click I want to call the JS that will call Liquid that will change the color scheme of the website, and I’ll have one light and one dark color scheme. There, in JS I’ll also be able to change logo or whatever.

I imagine it would go something like this

function on_dark_mode_button_click(){
  {% color_scheme.name = "my_dark_color_scheme" %}
}

Yea, I’ll find how to do it with JS and CSS in some tutorial, plenty of those on the internet.

Thanks for explaining, didn’t know Liquid was server-side.