color details

Color Details
#35705B Color Hex

#35705B color RGB value is (3, 87, 5).
#35705B hex color red value is 3, green value is 87, and blue value is 5.
Cylindrical-coordinate representations (HSL) of color #35705B hue: 121.43, saturation: 0.93 and lightness: 0.18.

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

Color Spaces
Color spaces of #35705BValue
RGB53, 112, 91
HSL0.44, 0.36, 0.32
HSV159°, 53°, 44°
XYZ9.15, 13.1, 11.94
Base Numbers
Base Red Green Blue
Binary 110101 1110000 1011011
Octal 65 160 133
Decimal 53 112 91
Hex 35 70 5B

RGB Percentages for Color #35705B

20.7%
43.75%
35.55%

CMYK Percentages of the Color #35705B

52.68%
18.75%
56.08%
CSS Codes for Color #35705B
.mybgColor {background-color: #35705B;}
.myforeColor {color: #35705B;}
.myborderColor {border:3px solid #35705B;}
Text Font Color #35705B

<p style="color:#35705B">Text here</p>

This sample text is styled with the font color #35705B. 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 #35705B

<div style="background-color:#35705B">Div content here</div>

The background color of this div is #35705B
Border Color #35705B

<div style="border:3px solid #35705B">Div here</div>

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

<p style="text-shadow: 4px 4px 2px rgba(53, 112, 91, 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 #35705B;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #35705B

Scroll to Top