color details

Color Details
#35322f Color Hex

#35322f color RGB value is (3, 83, 34).
#35322f hex color red value is 3, green value is 83, and blue value is 34.
Cylindrical-coordinate representations (HSL) of color #35322f hue: 143.25, saturation: 0.93 and lightness: 0.17.

The process color (four-color CMYK) of #35322f color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #35322f is #ff9999. Color #35322f contains mainly RED.

Color Spaces
Color spaces of #35322fValue
RGB53, 50, 47
HSL0.08, 0.06, 0.2
HSV30°, 11°, 21°
XYZ3.12, 3.24, 3.15
Base Numbers
Base Red Green Blue
Binary 110101 110010 101111
Octal 65 62 57
Decimal 53 50 47
Hex 35 32 2F

RGB Percentages for Color #35322f

35.33%
33.33%
31.33%

CMYK Percentages of the Color #35322f

5.66%
11.32%
79.22%
CSS Codes for Color #35322f
.mybgColor {background-color: #35322f;}
.myforeColor {color: #35322f;}
.myborderColor {border:3px solid #35322f;}
Text Font Color #35322f

<p style="color:#35322f">Text here</p>

This sample text is styled with the font color #35322f. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #35322f

<div style="background-color:#35322f">Div content here</div>

The background color of this div is #35322f
Border Color #35322f

<div style="border:3px solid #35322f">Div here</div>

The border color of this div is #35322f
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(53, 50, 47, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #35322f;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #35322f;
-webkit-box-shadow: 1px 1px 3px #35322f;
box-shadow: 1px 1px 3px #35322f;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(53, 50, 47, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #35322f;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #35322f; -webkit-box-shadow: 1px 1px 3px #35322f; box-shadow: 1px 1px 3px #35322f;">Div content here</div>

This div box has a shadow with a specified color. #35322f

Scroll to Top