color details

Color Details
#dcb000 Color Hex

#dcb000 color RGB value is (13, 203, 0).
#dcb000 hex color red value is 13, green value is 203, and blue value is 0.
Cylindrical-coordinate representations (HSL) of color #dcb000 hue: 116.16, saturation: 1 and lightness: 0.4.

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

Color Spaces
Color spaces of #dcb000Value
RGB220, 176, 0
HSL0.13, 1, 0.43
HSV48°, 100°, 86°
XYZ45.04, 46.27, 6.56
Base Numbers
Base Red Green Blue
Binary 11011100 10110000 0
Octal 334 260 0
Decimal 220 176 0
Hex DC B0 0

RGB Percentages for Color #dcb000

55.56%
44.44%

CMYK Percentages of the Color #dcb000

20%
100%
13.73%
CSS Codes for Color #dcb000
.mybgColor {background-color: #dcb000;}
.myforeColor {color: #dcb000;}
.myborderColor {border:3px solid #dcb000;}
Text Font Color #dcb000

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

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

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

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

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

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

<p style="text-shadow: 4px 4px 2px rgba(220, 176, 0, 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 #dcb000;">Text here</p>

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

Shadow Div Box

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

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

Scroll to Top