Color Picker

HEX: #FF0000

RGB: rgb(255, 0, 0)

HSL: hsl(0, 100%, 50%)

Colours

Colours provite a lot colours name list below with color display, color name, hex color code, and RGB color code. Choose your favorite colours name and take its code.

Color Color Name Hex Color Code RGB Color Code

Color with Highlights Name

Hex Color Code format

A hex color code is formed with hexadecimal number by a six-digit code. The code starts with a pound sign (#) followed by six digits, two for each of the three primary colors: red, green, and blue. Each digit can range from 0 to F, which represents the hexadecimal values for 0 to 15 in decimal.

For example, the hex code #FF0000 represents pure red, because the red component is set to its maximum value (FF), while the green and blue components are set to their minimum values (00).

Here is a table of some common hex color codes and their corresponding colors:

#FFFFFF

White Colours Name

#FF0000

Red Colours Name

#00FF00

Green colours name

#0000FF

Blue Colours Name

#FFFF00

Yellow colours name

#000000

Black Colours Name

To create a hex color code, you can use a this colours name tool or a hexadecimal converter. You can also calculate the hex code manually by converting the RGB values of the color to hexadecimal.

RGB Color Code format

RGB (Red, Green, Blue) is a color model commonly used in electronic displays, such as computer monitors, television screens, and digital cameras. In the RGB color model, each color is represented by a combination of red, green, and blue components. The values for each component can range from 0 to 255, where 0 is the absence of the color, and 255 is the maximum intensity of the color. The RGB color code is often expressed as a set of three values in the format (R, G, B), where R is the red component, G is the green component, and B is the blue component.

For example:

Colours Red
Colours Green
Colours Blue
Colours Yellow
Colours Colours
Colours Black

In addition to the numerical format, RGB colors are sometimes represented in hexadecimal format. Each component is converted to its hexadecimal equivalent and then combined. For example, pure red in hexadecimal is #FF0000.

Keep in mind that RGB is just one of several color models, and each has its own way of representing colors. Other common color models include CMYK (used in printing), HSL, and HSV.

Colours Nane

Amazing Colours Name for you

This website is designed for color and colour name display. We found here all types of colors like solid, soft with names and color code so that we can learn colour names and use color code to any where according to our need.

The most popular color code is Hex and RGB, we displayed this type of name for our uses, choose, and take easily.

How to use color using Name and Code

<!DOCTYPE html>
<html>
<body>

<div style=”background-color:red;” > Output background design using Red color name </div>

<div style=”background-color:#3AFF68;” > Output background design using Green color Hex code </div>

<div style=”background-color:rgba(58, 103, 255, 1);”> Output background design using Blue color RGB code </div>

<div style=”background-color:yellow;”> Output background design using Yellow color </div>

</body>
</html>

Output background design using Red color name

Output background design using Green color Hex code

Output background design using Blue color RGB code

Output background design using Yellow color