I’m aware that shopify recently deprecated scss/sass, but it looks like newly downloaded themes are only including regular css files (theme.css) as opposed to liquid files (theme.css.liquid). I’m having a hard time figuring out how to call variables from the schema portions of the website. Before, you could just use liquid (ex: color: {{settings.my_font_color}}
but now it looks like they’re using traditional css variables (ex: color: var(–my-font-color);). The problem is, I can’t find the :root element, or how they’re filling the value for those variables.
It looks like it’s still pulling data from the merchant selected settings/schema/whatever because the editing options that were present originally still work, but I can’t figure out how to make my own anymore. I’ve tried adding my own like I did under the old system, and using the id in the “var()” function like they seem to be doing now, but it just says “(my variable name) is not set”. I’ve left a couple screenshots of the css vs. css.liquid assets to show you what I’m talking about.

