#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 of #ADDFAD | Value |
---|---|
RGB | 173, 223, 173 |
HSL | 0.33, 0.44, 0.78 |
HSV | 120°, 22°, 87° |
XYZ | 51.16, 64.68, 49.32 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 10101101 | 11011111 | 10101101 |
Octal | 255 | 337 | 255 |
Decimal | 173 | 223 | 173 |
Hex | AD | DF | AD |
Shades of #ADDFAD
Tints of #ADDFAD
.mybgColor {background-color: #ADDFAD;} .myforeColor {color: #ADDFAD;} .myborderColor {border:3px solid #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,
<div style="background-color:#ADDFAD">Div content here</div>
<div style="border:3px solid #ADDFAD">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(173, 223, 173, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #ADDFAD;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>