#771908 / Obscure Ogre - HEX HTML/CSS Color.

Information about hexadecimal (HEX) color #771908, converting to RGB and HSL.
Alternative color name - Obscure Ogre

The hexadecimal color code #771908 after converting to RGB will be written as the following values: 119, 25, 8. And when converting to HSL - 9, 87%, 25%

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


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

rgb(119, 25, 8);

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

hsl(9, 87%, 25%);

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

Color:
HEX: #771908
RGB: rgb(119, 25, 8)
HSL: hsl(9, 87%, 25%)

Color #771908 in grayscale (#3f3f3f):

#3f3f3f

The complimentary color for #771908 is #086677.

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.

#086677

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

#771908
#087719
#190877

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

#771908
#2e7708
#086677
#500877

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

#771908
#770823
#77080d
#771908
#772f08
#774508

Monochromatic color palette for #771908:

#771908
#a1220b
#cc2b0e
#f63411
#220702
#4c1005

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

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#771908 #771908 #771908 #771908 #771908
#8f1e0a #5f1406 #842615 #741b0b #7a1705
#a7230b #470f05 #913322 #711d0e #7d1502
#bf280d #2f0a03 #9d3f2e #6d2012 #7f1300
#d72d0e #170502 #aa4c3b #6a2215 #7f1300
#ee3210 #000000 #b75948 #672418 #7f1300
#f14627 #000000 #c46655 #64261b #7f1300
#f25b3f #000000 #d07261 #61281e #7f1300
#f46f57 #000000 #dd7f6e #5e2b21 #7f1300
#f5846f #000000 #ea8c7b #5a2d25 #7f1300
#f79887 #000000 #f79988 #572f28 #7f1300
#f9ad9f #000000 #ffa594 #54312b #7f1300
#fac1b7 #000000 #ffb2a1 #51332e #7f1300
#fcd6cf #000000 #ffbfae #4e3631 #7f1300
#fdeae7 #000000 #ffccbb #4b3834 #7f1300
#ffffff #000000 #ffd8c7 #473a38 #7f1300
#ffffff #000000 #ffe5d4 #443c3b #7f1300
#ffffff #000000 #fff2e1 #413e3e #7f1300
#ffffff #000000 #ffffee #3f3f3f #7f1300
#ffffff #000000 #fffffa #3f3f3f #7f1300
#ffffff #000000 #ffffff #3f3f3f #7f1300

Background color (background-color).

Code:

<h1 style="background-color:#771908;">Title text h1</h1> <h1 style="background-color:rgb(119, 25, 8);">Title text h1</h1> <h1 style="background-color:hsl(9, 87%, 25%);">Title text h1</h1>

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

Код:

<h1 style="color:#771908;">Title text h1</h1> <h1 style="color:rgb(119, 25, 8);">Title text h1</h1> <h1 style="color:hsl(9, 87%, 25%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#771908;">Title text h1</h1> <h1 style="border-color:rgb(119, 25, 8);">Title text h1</h1> <h1 style="border-color:hsl(9, 87%, 25%);">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);