Don’t hesitate to contact us if you have any feedback.

Tag: HSL

  • SCSS – Convert HEX to HSL

    SCSS – Convert HEX to HSL

    Manipulating colors in web design is a common task, and sometimes you need to convert color formats to achieve the desired effect or compatibility. The SCSS function hexTohslString provides a straightforward way to convert a hexadecimal color value to an HSL (Hue, Saturation, Lightness) string, which can then be used within your stylesheets. The Code…

    Read more

  • WordPress – Handle theme.json HSL color transparency

    WordPress – Handle theme.json HSL color transparency

    WordPress’s full site editing capabilities have revolutionized theme customization, allowing for an extensive range of configurations through the theme.json file. However, one limitation has been the inability to handle color transparency effectively with traditional hexadecimal color codes. To address this, we’ve crafted a solution to enhance your theme’s color system. Find out how to do…

    Read more

  • SCSS – Color management unified approach

    SCSS – Color management unified approach

    Introduction In digital design, colors convey meaning, set mood, and create coherence. Managing colors effectively across a project can be challenging, especially when dealing with multiple color formats such as HEX, RGB, and HSL. Our SCSS solution simplifies this by consolidating various color types into a single, manageable collection. The $colors Map We begin with…

    Read more