color details

Color Details
#dadadb Color Hex

#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
Color spaces of #dadadbValue
RGB218, 218, 219
HSL0.67, 0.01, 0.86
HSV240°, 0°, 86°
XYZ66.77, 70.16, 77.03
Base Numbers
Base Red Green Blue
Binary 11011010 11011010 11011011
Octal 332 332 333
Decimal 218 218 219
Hex DA DA DB

RGB Percentages for Color #dadadb

33.28%
33.28%
33.44%

CMYK Percentages of the Color #dadadb

0.46%
0.46%
14.12%
CSS Codes for Color #dadadb
.mybgColor {background-color: #dadadb;}
.myforeColor {color: #dadadb;}
.myborderColor {border:3px solid #dadadb;}
Text Font Color #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,

Background Color #dadadb

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

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

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

The border color of this div is #dadadb
Css3 Examples
            .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;            }
            
Text Shadow Using RGB Values

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

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

Shadow Div Box

<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>

This div box has a shadow with a specified color. #dadadb

Scroll to Top