How to convert Color Names to Hexcode using JavaScript

A guide on how to convert color names (e.g., "red", "blue") into Hex color codes (#RRGGBB) using JavaScript. This method helps manipulate colors efficiently in web development.

In this article, we will learn how to convert common color names into Hex color codes using JavaScript. We'll leverage an HTML canvas object to obtain the color values in Hex format from the color names.

JavaScript Code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Color Name to Hexcode Converter</title>
</head>
<body>

    <h2>Convert Color Name to Hexcode</h2>
    <input type="text" id="colorName" placeholder="Enter color name (e.g. red)">
    <button onclick="convertColor()">Convert</button>
    <p id="hexCode">Hexcode: </p>

    <script>
        // Function to convert color name to hex code
        function convertColor() {
            const colorName = document.getElementById("colorName").value; // Get the color name from input
            const canvas = document.createElement("canvas"); // Create a canvas element
            const ctx = canvas.getContext("2d"); // Get the 2D context

            // Assign the color name to the canvas context
            ctx.fillStyle = colorName;
            const hexCode = ctx.fillStyle; // Retrieve the hex code from fillStyle

            // Display the hex code in the paragraph
            document.getElementById("hexCode").innerText = `Hexcode: ${hexCode}`;
        }
    </script>

</body>
</html>

Detailed explanation:

  1. <!DOCTYPE html>: Declares the document as an HTML document.
  2. <input type="text" id="colorName">: Creates an input field for the user to enter a color name.
  3. <button onclick="convertColor()">: Button to trigger the convertColor function when clicked.
  4. function convertColor(): Defines the JavaScript function to convert color names to hex codes.
  5. const colorName = document.getElementById("colorName").value;: Retrieves the color name from the input field.
  6. const canvas = document.createElement("canvas");: Creates a canvas object to use drawing methods.
  7. const ctx = canvas.getContext("2d");: Retrieves the 2D context for drawing and getting color values.
  8. ctx.fillStyle = colorName;: Assigns the color name to the fillStyle property of the canvas.
  9. const hexCode = ctx.fillStyle;: Gets the hex code from fillStyle.
  10. document.getElementById("hexCode").innerText = ...;: Displays the hex code in the paragraph element.

Tips:

  • The color names should follow the CSS-supported color names (e.g., "red", "blue", "green").
  • If you want to convert RGB to hex, you may need to implement a conversion function from RGB values to hex format.
Tags: JavaScript


Related

JavaScript Program to Pass Parameter to a setTimeout() Method Using an Anonymous Function

A guide on how to pass parameters to the `setTimeout()` method using an anonymous function in JavaScript. This approach helps developers delay code execution while passing specific parameters.
How to POST Data from an HTML Form to an API URL Using JavaScript

Learn how to send data from an HTML form to an API URL using JavaScript with the POST method. Includes detailed code and explanation on how to use Fetch API to handle form data and send POST requests.
How to pass an array as a function parameter in JavaScript using the spread syntax

A guide on how to use the spread syntax (`...`) to pass an array as a parameter to a function in JavaScript. The article will show how to pass array elements as individual function arguments.
Convert accented Unicode characters to non-accented in JavaScript

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using JavaScript's normalize method. This JavaScript code efficiently handles Vietnamese text processing.
How to append HTML code to a div using appendChild in JavaScript

A guide on using `appendChild` to append HTML code to a `div` in JavaScript. This approach ensures DOM integrity and allows you to dynamically add HTML elements.
Appending HTML to a div using innerHTML in JavaScript

This article guides how to append HTML code to a `div` element using the `innerHTML` property in JavaScript. Readers will learn how to work with the DOM to add new HTML content to a specific `div`.
Send JSON data via POST to an API using JavaScript

A guide on how to send JSON data to an API using the POST method in JavaScript. The code uses the fetch method to perform the POST request and includes detailed explanations of each step.
How to Fetch JSON Data from an API URL Using JavaScript

Learn how to fetch JSON data from an API URL using JavaScript. Includes detailed code and explanations for each line to help you understand how to use Fetch API for making GET requests and handling JSON data.
How to append HTML code to a div using insertAdjacentHTML in JavaScript

A guide on how to append HTML code to a `div` using the `insertAdjacentHTML` method in JavaScript. This method allows you to add content without replacing the existing content.
How to convert 3-digit color code to 6-digit color code using JavaScript

A guide on converting 3-digit color codes (#RGB) to 6-digit color codes (#RRGGBB) using JavaScript. This ensures consistent color representation in web pages.

main.add_cart_success