#e95f24 / Santiago Orange - HEX HTML/CSS Color.

Information about hexadecimal (HEX) color #e95f24, converting to RGB and HSL.
Alternative color name - Santiago Orange

The hexadecimal color code #e95f24 after converting to RGB will be written as the following values: 233, 95, 36. And when converting to HSL - 18, 82%, 53%

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


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

rgb(233, 95, 36);

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

hsl(18, 82%, 53%);

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

Color:
HEX: #e95f24
RGB: rgb(233, 95, 36)
HSL: hsl(18, 82%, 53%)

Color #e95f24 in grayscale (#868686):

#868686

The complimentary color for #e95f24 is #24aee9.

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.

#24aee9

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

#e95f24
#24e95f
#5f24e9

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

#e95f24
#4be924
#24aee9
#c124e9

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

#e95f24
#e92438
#e93824
#e95f24
#e98624
#e9ae24

Monochromatic color palette for #e95f24:

#e95f24
#140803
#3f1a0a
#692b10
#943c17
#be4e1d

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

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#e95f24 #e95f24 #e95f24 #e95f24 #e95f24
#eb703b #dd5216 #f66c31 #e3612a #ef5d1e
#ee8152 #c64914 #ff793e #dd6430 #f55a18
#f09269 #af4112 #ff854a #d76636 #fb5812
#f2a381 #98380f #ff9257 #d1693c #ff560e
#f5b498 #81300d #ff9f64 #cb6b42 #ff560e
#f7c5af #69270b #ffac71 #c56d48 #ff560e
#f9d5c6 #521e08 #ffb87d #bf704e #ff560e
#fce6dd #3b1606 #ffc58a #b97254 #ff560e
#fef7f5 #240d04 #ffd297 #b3755a #ff560e
#ffffff #0d0501 #ffdfa4 #ad7760 #ff560e
#ffffff #000000 #ffebb0 #a77a66 #ff560e
#ffffff #000000 #fff8bd #a17c6c #ff560e
#ffffff #000000 #ffffca #9b7e72 #ff560e
#ffffff #000000 #ffffd7 #958178 #ff560e
#ffffff #000000 #ffffe3 #8f837e #ff560e
#ffffff #000000 #fffff0 #898684 #ff560e
#ffffff #000000 #fffffd #868686 #ff560e
#ffffff #000000 #ffffff #868686 #ff560e
#ffffff #000000 #ffffff #868686 #ff560e
#ffffff #000000 #ffffff #868686 #ff560e

Background color (background-color).

Code:

<h1 style="background-color:#e95f24;">Title text h1</h1> <h1 style="background-color:rgb(233, 95, 36);">Title text h1</h1> <h1 style="background-color:hsl(18, 82%, 53%);">Title text h1</h1>

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

Код:

<h1 style="color:#e95f24;">Title text h1</h1> <h1 style="color:rgb(233, 95, 36);">Title text h1</h1> <h1 style="color:hsl(18, 82%, 53%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#e95f24;">Title text h1</h1> <h1 style="border-color:rgb(233, 95, 36);">Title text h1</h1> <h1 style="border-color:hsl(18, 82%, 53%);">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);