#dadadb color RGB value is (13, 173, 173).
#dadadb hex color red value is 13, green value is 173, and blue value is 173.
Cylindrical-coordinate representations (HSL) of color #dadadb
hue: 180,
saturation: 0.86 and lightness: 0.36.
The process color (four-color CMYK) of #dadadb color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #dadadb is #ff9999. Color #dadadb contains mainly RED.
Color spaces of #dadadb | Value |
---|---|
RGB | 218, 218, 219 |
HSL | 0.67, 0.01, 0.86 |
HSV | 240°, 0°, 86° |
XYZ | 66.77, 70.16, 77.03 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11011010 | 11011010 | 11011011 |
Octal | 332 | 332 | 333 |
Decimal | 218 | 218 | 219 |
Hex | DA | DA | DB |
Shades of #dadadb
Tints of #dadadb
.mybgColor {background-color: #dadadb;} .myforeColor {color: #dadadb;} .myborderColor {border:3px solid #dadadb;}
<p style="color:#dadadb">Text here</p>
This sample text is styled with the font color #dadadb. 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:#dadadb">Div content here</div>
<div style="border:3px solid #dadadb">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(218, 218, 219, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #dadadb; } .divShadow { -moz-box-shadow: 1px 1px 3px #dadadb; -webkit-box-shadow: 1px 1px 3px #dadadb; box-shadow: 1px 1px 3px #dadadb; }
<p style="text-shadow: 4px 4px 2px rgba(218, 218, 219, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #dadadb;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #dadadb;
-webkit-box-shadow: 1px 1px 3px #dadadb;
box-shadow: 1px 1px 3px #dadadb;">Div content here</div>