color details

Color Details
#ADDFAD Color Hex

#ADDFAD color RGB value is (10, 221, 250).
#ADDFAD hex color red value is 10, green value is 221, and blue value is 250.
Cylindrical-coordinate representations (HSL) of color #ADDFAD hue: 187.25, saturation: 0.96 and lightness: 0.51.

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

Color Spaces
Color spaces of #ADDFADValue
RGB173, 223, 173
HSL0.33, 0.44, 0.78
HSV120°, 22°, 87°
XYZ51.16, 64.68, 49.32
Base Numbers
Base Red Green Blue
Binary 10101101 11011111 10101101
Octal 255 337 255
Decimal 173 223 173
Hex AD DF AD

RGB Percentages for Color #ADDFAD

30.4%
39.19%
30.4%

CMYK Percentages of the Color #ADDFAD

22.42%
22.42%
12.55%
CSS Codes for Color #ADDFAD
.mybgColor {background-color: #ADDFAD;}
.myforeColor {color: #ADDFAD;}
.myborderColor {border:3px solid #ADDFAD;}
Text Font Color #ADDFAD

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

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

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

The background color of this div is #ADDFAD
Border Color #ADDFAD

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

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

<p style="text-shadow: 4px 4px 2px rgba(173, 223, 173, 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 #ADDFAD;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #ADDFAD
Scroll to Top