#47493b / Treasure Island - HEX HTML/CSS Color.

Information about hexadecimal (HEX) color #47493b, converting to RGB and HSL.
Alternative color name - Treasure Island

The hexadecimal color code #47493b after converting to RGB will be written as the following values: 71, 73, 59. And when converting to HSL - 69, 11%, 26%

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


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

rgb(71, 73, 59);

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

hsl(69, 11%, 26%);

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 #47493b

Color:
HEX: #47493b
RGB: rgb(71, 73, 59)
HSL: hsl(69, 11%, 26%)

Color #47493b in grayscale (#424242):

#424242

The complimentary color for #47493b is #3d3b49.

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.

#3d3b49

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

#47493b
#3b4749
#493b47

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 #47493b:

#47493b
#3b4944
#3d3b49
#493b40

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

#47493b
#49453b
#49483b
#47493b
#44493b
#41493b

Monochromatic color palette for #47493b:

#47493b
#70735d
#9a9e80
#c3c8a2
#ecf3c4
#1e1e19

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

Lighter (step 5%) Darker (step 5%) Brighter (step 5%) Discoloration (step 5%) Saturation (step 5%)
#47493b #47493b #47493b #47493b #47493b
#555746 #393b30 #545648 #45463e #494c38
#626552 #2c2d24 #616355 #424242 #4c5034
#70735d #1e1f19 #6d6f61 #424242 #4e5331
#7e8169 #10110d #7a7c6e #424242 #50562e
#8b8f74 #020202 #87897b #424242 #53592b
#979a83 #000000 #949688 #424242 #555d27
#a3a691 #000000 #a0a294 #424242 #576024
#afb19f #000000 #adafa1 #424242 #5a6321
#babdad #000000 #babcae #424242 #5c671d
#c6c8bb #000000 #c7c9bb #424242 #5f6a1a
#d2d3c9 #000000 #d3d5c7 #424242 #616d17
#dedfd7 #000000 #e0e2d4 #424242 #637113
#eaeae5 #000000 #edefe1 #424242 #667410
#f5f6f3 #000000 #fafcee #424242 #68770d
#ffffff #000000 #fffffa #424242 #6a7a0a
#ffffff #000000 #ffffff #424242 #6d7e06
#ffffff #000000 #ffffff #424242 #6f8103
#ffffff #000000 #ffffff #424242 #718400
#ffffff #000000 #ffffff #424242 #718400
#ffffff #000000 #ffffff #424242 #718400

Background color (background-color).

Code:

<h1 style="background-color:#47493b;">Title text h1</h1> <h1 style="background-color:rgb(71, 73, 59);">Title text h1</h1> <h1 style="background-color:hsl(69, 11%, 26%);">Title text h1</h1>

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

Код:

<h1 style="color:#47493b;">Title text h1</h1> <h1 style="color:rgb(71, 73, 59);">Title text h1</h1> <h1 style="color:hsl(69, 11%, 26%);">Title text h1</h1>

Border color (border-color).

Код:

<h1 style="border-color:#47493b;">Title text h1</h1> <h1 style="border-color:rgb(71, 73, 59);">Title text h1</h1> <h1 style="border-color:hsl(69, 11%, 26%);">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);