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

Tag: RGB

  • SCSS – Convert HEX to RGB

    SCSS – Convert HEX to RGB

    When working with colors in web design, it’s often necessary to convert between different color formats. The SCSS function hexToRGBString simplifies the process of converting a hexadecimal color value to an RGB string, which can be particularly useful for dynamic styling and JavaScript interactions. The Code How It Operates The hexToRGBString function takes a hexadecimal…

    Read more

  • WordPress – Handle theme.json RGB color transparency

    WordPress – Handle theme.json RGB color transparency

    WordPress’s theme.json has brought unparalleled ease to theme customization. However, the default color settings, which are typically in hexadecimal format, lack support for transparency. To enhance your theme’s color capabilities, we’ve developed a solution that introduces RGB color values with transparency. Find out how to do it with HSL here. The Code Our custom PHP…

    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