It’s a great plugin. I believe the part that links to my request is:
Advanced Appearance allows users to set an accent color and a base color, using HSL sliders. These HSL values are then mapped to Obsidian’s default CSS color variables. HSL is used because the values can be easily modified using calc() to generate variations of that color.
You can use these variables to compute shades using calc() in your CSS, for example, the code below generates a color that is 10% darker than the base color:
--background-secondary:hsl(var(--base-h),var(--base-s),calc(var(--base-l) - 10%));
You can use this approach to modify the hue and saturation as well.
If anyone can explain the exact steps that need to be taken to change the base color to red, for example, I’d really appreciate it. Specifically, which file to implement the code in and what the exact code should be.
Thanks!