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

Tag: HEX

  • 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

  • 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

  • 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