<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>CSS on Sine Die</title><link>https://sinetris.github.io/sine-die/tags/css/</link><description>Recent content in CSS on Sine Die</description><generator>Sine Die theme for Hugo</generator><language>en</language><webMaster>duilio@sinetris.info (Duilio Ruggiero)</webMaster><lastBuildDate>Thu, 09 Apr 2026 07:46:34 GMT</lastBuildDate><atom:link href="https://sinetris.github.io/sine-die/tags/css/index.rss.xml" rel="self" type="application/rss+xml"/><item><title>Color Palette</title><link>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/palette/</link><pubDate>Sun, 16 Jul 2023 08:07:24 GMT</pubDate><guid>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/palette/</guid><description>&lt;p&gt;This theme uses 
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascading_variables" rel="external" title="CSS custom properties for cascading variables"&gt;CSS cascading variables&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The color palette uses a three-color combination and allows to set the primary color hue angle and the left and right secondary colors hue angle (respectively adding and subtracting from the primary hue angle).&lt;/p&gt;
&lt;p&gt;The hue angle is based on the 
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl" rel="external" title="hsl()"&gt;hsl&lt;/a&gt; color space but the color palette is generated using 
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklch" rel="external" title="oklch()"&gt;oklch&lt;/a&gt;, this make it easier to select a color hue from the HSL 
&lt;a href="https://sinetris.github.io/sine-die/glossary/color-wheel/"&gt;Color Wheel&lt;/a&gt; while still taking advantage of the benefits that OKLCH provides.&lt;/p&gt;
&lt;div&gt;[Truncated]&lt;/div&gt;</description></item><item><title>Theme Colors</title><link>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/colors/</link><pubDate>Thu, 20 Jul 2023 11:10:15 GMT</pubDate><guid>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/colors/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;By default the theme uses the &lt;strong&gt;triadic color scheme&lt;/strong&gt; (&lt;em&gt;secondary colors angle&lt;/em&gt;
set to &lt;code&gt;120deg&lt;/code&gt;) with the &lt;em&gt;primary color hue&lt;/em&gt; angle set to &lt;code&gt;250deg&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;:root {
 /* Using default values */
 --color-primary-hue: 250deg;
 --colors-secondary-hue-angle: 120deg;
}&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>Theme Colors (override)</title><link>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/colors-override/</link><pubDate>Thu, 20 Jul 2023 08:07:24 GMT</pubDate><guid>https://sinetris.github.io/sine-die/topics/docs/look-and-feel/colors-override/</guid><description>&lt;h2 id="description"&gt;Description&lt;/h2&gt;
&lt;p&gt;In this example we override the &lt;strong&gt;primary color hue&lt;/strong&gt; angle to &lt;code&gt;200deg&lt;/code&gt; and the
&lt;strong&gt;secondary colors angle&lt;/strong&gt; to &lt;code&gt;330deg&lt;/code&gt; to have a &lt;strong&gt;Split-Complementary color
scheme&lt;/strong&gt; with left and right inverted.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;:root {
 --color-primary-hue: 200deg;
 --colors-secondary-hue-angle: 210deg;
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You can see the changes right here on this page.&lt;/p&gt;</description></item></channel></rss>