#e60000 / Electric Red - HEX HTML/CSS Color.

Information about hexadecimal (HEX) color #e60000, converting to RGB and HSL.
Alternative color name - Electric Red

The hexadecimal color code #e60000 after converting to RGB will be written as the following values: 230, 0, 0. And when converting to HSL - 0, 100%, 45%

The hexadecimal system is based on the number 16. The numbers in the hexadecimal sequence are as follows: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. Numbers from 10 to 15 replaced by Latin letters. Numbers greater than 15 in this system are formed by combining two numbers into one.

The HEX value consists of three colors (#rrggbb, where r-red, g-green, b-blue. Each of the three colors - red, green and blue - can range from 00 to FF.

Color #e60000 is dark. Its brightness level is - 68.77 (the brightness level is counted as a number in the range from 0 to 255).


The full HEX color #e60000 in RGB will look like this:

rgb(230, 0, 0);

In rgb(x, x, x), 'x' is numbers from 0 to 255 that represent the amount of the corresponding color (red(RED), green(GREEN), blue(BLUE)).


When writing colors in HTML / CSS, HEX or RGB values ​​are most often used. You can also use keywords for named colors. Currently modern browsers can provide HSL support as well.

The complete HEX of color #e60000 in HSL will look like this:

hsl(0, 100%, 45%);

HSL is another type of color notation in HTML / CSS. The name of this format consists of the first letters of the values ​​from which the color is assembled. Hue, Saturate, Lightness.

Hue the value of the color on the color wheel, which is specified in degrees. 0 ° corresponds to red, 120 ° to green, 240 ° to blue. The hue value can range from 0 to 359.

Saturate - the intensity of the color, measured as a percentage from 0% to 100%. A value of 0% is no color and a shade of gray, and 100% is the maximum saturation value.

Lightness - is a value that shows how bright the color is and is indicated as a percentage from 0% to 100%. A lower value is darker, and a higher value is lighter (0% is white and 100% is black).

RGB, HSL values ​​table for HEX #e60000

Color:
HEX: #e60000
RGB: rgb(230, 0, 0)
HSL: hsl(0, 100%, 45%)

Color #e60000 in grayscale (#737373):

#737373

The complimentary color for #e60000 is #00e6e6.

A complimentary color is one that is opposite in the color wheel. Complementary colors reinforce each other, and when mixed, give a neutral gray without shades.

#00e6e6

Triad (combination of 3 equally spaced colors) for color #e60000:

#e60000
#00e600
#0000e6

Tetrad (color scheme, a special variant of the dual color scheme with equal spacing between all colors. All four colors are evenly distributed around the color wheel, resulting in no clear dominance of one color) for color #e60000:

#e60000
#73e600
#00e6e6
#7300e6

A palette of similar colors for #e60000 (generated based on a 30-degree rotation of the color wheel):

#e60000
#e6005c
#e6002e
#e60000
#e62e00
#e65c00

Monochromatic color palette for #e60000:

#e60000
#110000
#3c0000
#660000
#910000
#bb0000

Table with the result of various manipulations (lightening, darkening, etc. with a step of 5%) over the color #e60000:

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#e60000 #e60000 #e60000 #e60000 #e60000
#ff0000 #cc0000 #f30d0d #e00606 #e60000
#ff1a1a #b30000 #ff1a1a #da0b0b #e60000
#ff3333 #990000 #ff2626 #d51111 #e60000
#ff4d4d #800000 #ff3333 #cf1717 #e60000
#ff6666 #660000 #ff4040 #c91d1d #e60000
#ff8080 #4d0000 #ff4d4d #c32222 #e60000
#ff9999 #330000 #ff5959 #be2828 #e60000
#ffb3b3 #1a0000 #ff6666 #b82e2e #e60000
#ffcccc #000000 #ff7373 #b23434 #e60000
#ffe6e6 #000000 #ff8080 #ac3939 #e60000
#ffffff #000000 #ff8c8c #a73f3f #e60000
#ffffff #000000 #ff9999 #a14545 #e60000
#ffffff #000000 #ffa6a6 #9b4b4b #e60000
#ffffff #000000 #ffb3b3 #955050 #e60000
#ffffff #000000 #ffbfbf #905656 #e60000
#ffffff #000000 #ffcccc #8a5c5c #e60000
#ffffff #000000 #ffd9d9 #846262 #e60000
#ffffff #000000 #ffe6e6 #7e6767 #e60000
#ffffff #000000 #fff2f2 #796d6d #e60000
#ffffff #000000 #ffffff #737373 #e60000

Background color (background-color).

Code:

<h1 style="background-color:#e60000;">Title text h1</h1> <h1 style="background-color:rgb(230, 0, 0);">Title text h1</h1> <h1 style="background-color:hsl(0, 100%, 45%);">Title text h1</h1>

Цвет текста (color).

Код:

<h1 style="color:#e60000;">Title text h1</h1> <h1 style="color:rgb(230, 0, 0);">Title text h1</h1> <h1 style="color:hsl(0, 100%, 45%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#e60000;">Title text h1</h1> <h1 style="border-color:rgb(230, 0, 0);">Title text h1</h1> <h1 style="border-color:hsl(0, 100%, 45%);">Title text h1</h1>

It is also worth noting that the RGB and HSL color formats support an alpha channel (RGBa, HSLa), which sets the transparency level of the color. The alpha channel is written as a fourth value, which can take a value from 0 to 1, where 0 is completely transparent and 1 is opaque.

Format:

rgba(R, G, B, a); hsla(H, S%, L%, a);