HEX: #D0B0BD
RGB: (208,176,189)
#D0B0BD contains red, green and blue colors in about the same proportion. Web safe color of #D0B0BD is #CC99CC (or #C9C).
#D0B0BD color RGB value is (208,176,189).
RGB: (208,176,189) (82%,69%,74%)
R 208 of 255 = 82%
G 176 of 255 = 69%
B 189 of 255 = 74%
R + G + B ~ 75%. #D0B0BD is quite light color.
R + G + B =
208 + 176 + 189 = 573 (100%)
R 208 of 573 ~ 36.3%
G 176 of 573 ~ 30.72%
B 189 of 573 ~ 32.98%
#D0B0BD color CMYK value is (0,15,9,18).
CMYK: (0,15,9,18) C0M15Y9K18 (0%,15%,9%,18%) (0.00/0.15/0.09/0.18)
D0 | B0 | BD | |
---|---|---|---|
RGB | 208 | 176 | 189 |
HSL | 336° | 25.40% | 75.29% |
HSB/HSV | 336° | 15.38% | 81.57% |
CMYK | 0.00% | 15.38% | 9.13% |
18.43% |
HEX | D0 | B0 | BD |
Decimal | 208 | 176 | 189 |
Binary | 11010000 | 10110000 | 10111101 |
Octal | 320 | 260 | 275 |
Examples of css and html codes for elements with #D0B0BD color. Also use rgb(208,176,189) instead hex code.
.myTextColor { color: #D0B0BD; }
<p style="color:#D0B0BD">This sample text font color is #D0B0BD.</p>
This text font color is #D0B0BD.
.myBgColor { background-color: #D0B0BD; }
<div style="background-color:#D0B0BD">Inner text</div>
This div background color is #D0B0BD.
.myBorderColor { border: 1px solid #D0B0BD; }
<div style="border:3px solid #D0B0BD">Div</div>
This div border color is #D0B0BD.
.myOpacity80 { color: #D0B0BD; opacity: 0.8; }
<p style="color:#D0B0BD;opacity:0.8;">80%</p>
Text with #D0B0BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D0B0BD;}
<p style="text-shadow: 3px 3px 1px #D0B0BD">Text here.</p>
This text has shadow with #D0B0BD color.
.textShadow {text-shadow: 3px 3px 1px #D0B0BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D0B0BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D0B0BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D0B0BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D0B0BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D0B0BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D0B0BD; -webkit-box-shadow: 1px 1px 3px 2px #D0B0BD; box-shadow: 1px 1px 3px 2px #D0B0BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D0B0BD; -webkit-box-shadow: 1px 1px 3px 2px #D0B0BD; box-shadow:1px 1px 3px 2px #D0B0BD;">
Div content here</div>
This text has color #D0B0BD on black background.
This text has color #D0B0BD on white background.
This text has black color on #D0B0BD background.
This text has white color on #D0B0BD background.