#ef0bae - HEX HTML/CSS Color.

Information about hexadecimal (HEX) color #ef0bae, converting to RGB and HSL.

The hexadecimal color code #ef0bae after converting to RGB will be written as the following values: 239, 11, 174. And when converting to HSL - 317, 91%, 49%

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 #ef0bae is dark. Its brightness level is - 97.754 (the brightness level is counted as a number in the range from 0 to 255).


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

rgb(239, 11, 174);

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 #ef0bae in HSL will look like this:

hsl(317, 91%, 49%);

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 #ef0bae

Color:
HEX: #ef0bae
RGB: rgb(239, 11, 174)
HSL: hsl(317, 91%, 49%)

Color #ef0bae in grayscale (#7d7d7d):

#7d7d7d

The complimentary color for #ef0bae is #0bef4c.

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.

#0bef4c

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

#ef0bae
#aeef0b
#0baeef

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 #ef0bae:

#ef0bae
#efbe0b
#0bef4c
#0b3cef

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

#ef0bae
#d50bef
#ef0bdc
#ef0bae
#ef0b80
#ef0b53

Monochromatic color palette for #ef0bae:

#ef0bae
#1a0113
#450332
#6f0551
#9a0770
#c4098f

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

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#ef0bae #ef0bae #ef0bae #ef0bae #ef0bae
#f51fb8 #d70a9c #fc18bb #e911ab #f505b1
#f637bf #be098a #ff25c8 #e217a9 #fa00b3
#f750c7 #a60879 #ff31d4 #dc1ea6 #fa00b3
#f868cf #8d0767 #ff3ee1 #d624a3 #fa00b3
#f980d7 #750555 #ff4bee #d02aa1 #fa00b3
#fa99de #5d0443 #ff58fb #c9309e #fa00b3
#fbb1e6 #440332 #ff64ff #c3379b #fa00b3
#fdc9ee #2c0220 #ff71ff #bd3d98 #fa00b3
#fee2f6 #14010e #ff7eff #b74396 #fa00b3
#fffafd #000000 #ff8bff #b04993 #fa00b3
#ffffff #000000 #ff97ff #aa5090 #fa00b3
#ffffff #000000 #ffa4ff #a4568e #fa00b3
#ffffff #000000 #ffb1ff #9e5c8b #fa00b3
#ffffff #000000 #ffbeff #976288 #fa00b3
#ffffff #000000 #ffcaff #916986 #fa00b3
#ffffff #000000 #ffd7ff #8b6f83 #fa00b3
#ffffff #000000 #ffe4ff #857580 #fa00b3
#ffffff #000000 #fff1ff #7e7b7e #fa00b3
#ffffff #000000 #fffdff #7d7d7d #fa00b3
#ffffff #000000 #ffffff #7d7d7d #fa00b3

Background color (background-color).

Code:

<h1 style="background-color:#ef0bae;">Title text h1</h1> <h1 style="background-color:rgb(239, 11, 174);">Title text h1</h1> <h1 style="background-color:hsl(317, 91%, 49%);">Title text h1</h1>

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

Код:

<h1 style="color:#ef0bae;">Title text h1</h1> <h1 style="color:rgb(239, 11, 174);">Title text h1</h1> <h1 style="color:hsl(317, 91%, 49%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#ef0bae;">Title text h1</h1> <h1 style="border-color:rgb(239, 11, 174);">Title text h1</h1> <h1 style="border-color:hsl(317, 91%, 49%);">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);