#fc171e - HEX HTML/CSS Color.

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

The hexadecimal color code #fc171e after converting to RGB will be written as the following values: 252, 23, 30. And when converting to HSL - 358, 97%, 54%

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


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

rgb(252, 23, 30);

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

hsl(358, 97%, 54%);

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

Color:
HEX: #fc171e
RGB: rgb(252, 23, 30)
HSL: hsl(358, 97%, 54%)

Color #fc171e in grayscale (#898989):

#898989

The complimentary color for #fc171e is #17fcf5.

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.

#17fcf5

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

#fc171e
#1efc17
#171efc

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

#fc171e
#90fc17
#17fcf5
#8217fc

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

#fc171e
#fc177a
#fc174c
#fc171e
#fc3e17
#fc6c17

Monochromatic color palette for #fc171e:

#fc171e
#270405
#52070a
#7c0b0f
#a70f14
#d11319

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

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#fc171e #fc171e #fc171e #fc171e #fc171e
#fc3036 #f6030b #ff242b #f61d24 #ff141b
#fd494f #dd030a #ff3138 #f02329 #ff141b
#fd6367 #c40308 #ff3d44 #ea292f #ff141b
#fd7c80 #ab0207 #ff4a51 #e42f34 #ff141b
#fe9598 #920206 #ff575e #df343a #ff141b
#feaeb0 #780205 #ff646b #d93a3f #ff141b
#fec7c9 #5f0104 #ff7077 #d34045 #ff141b
#ffe0e1 #460103 #ff7d84 #cd464a #ff141b
#fffafa #2d0102 #ff8a91 #c74c50 #ff141b
#ffffff #140001 #ff979e #c15255 #ff141b
#ffffff #000000 #ffa3aa #bb585b #ff141b
#ffffff #000000 #ffb0b7 #b55e60 #ff141b
#ffffff #000000 #ffbdc4 #b06366 #ff141b
#ffffff #000000 #ffcad1 #aa696b #ff141b
#ffffff #000000 #ffd6dd #a46f71 #ff141b
#ffffff #000000 #ffe3ea #9e7576 #ff141b
#ffffff #000000 #fff0f7 #987b7c #ff141b
#ffffff #000000 #fffdff #928181 #ff141b
#ffffff #000000 #ffffff #8c8787 #ff141b
#ffffff #000000 #ffffff #898989 #ff141b

Background color (background-color).

Code:

<h1 style="background-color:#fc171e;">Title text h1</h1> <h1 style="background-color:rgb(252, 23, 30);">Title text h1</h1> <h1 style="background-color:hsl(358, 97%, 54%);">Title text h1</h1>

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

Код:

<h1 style="color:#fc171e;">Title text h1</h1> <h1 style="color:rgb(252, 23, 30);">Title text h1</h1> <h1 style="color:hsl(358, 97%, 54%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#fc171e;">Title text h1</h1> <h1 style="border-color:rgb(252, 23, 30);">Title text h1</h1> <h1 style="border-color:hsl(358, 97%, 54%);">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);