HEX: #D180AD
RGB: (209,128,173)
#D180AD contains mainly red and blue colors. Web safe color of #D180AD is #CC6699 (or #C69).
#D180AD color RGB value is (209,128,173).
RGB: (209,128,173) (82%,50%,68%)
R 209 of 255 = 82%
G 128 of 255 = 50%
B 173 of 255 = 68%
R + G + B ~ 67%. #D180AD is quite light color.
R + G + B =
209 + 128 + 173 = 510 (100%)
R 209 of 510 ~ 40.98%
G 128 of 510 ~ 25.1%
B 173 of 510 ~ 33.92%
#D180AD color CMYK value is (0,39,17,18).
CMYK: (0,39,17,18) C0M39Y17K18 (0%,39%,17%,18%) (0.00/0.39/0.17/0.18)
D1 | 80 | AD | |
---|---|---|---|
RGB | 209 | 128 | 173 |
HSL | 327° | 46.82% | 66.08% |
HSB/HSV | 327° | 38.76% | 81.96% |
CMYK | 0.00% | 38.76% | 17.22% |
18.04% |
HEX | D1 | 80 | AD |
Decimal | 209 | 128 | 173 |
Binary | 11010001 | 10000000 | 10101101 |
Octal | 321 | 200 | 255 |
Examples of css and html codes for elements with #D180AD color. Also use rgb(209,128,173) instead hex code.
.myTextColor { color: #D180AD; }
<p style="color:#D180AD">This sample text font color is #D180AD.</p>
This text font color is #D180AD.
.myBgColor { background-color: #D180AD; }
<div style="background-color:#D180AD">Inner text</div>
This div background color is #D180AD.
.myBorderColor { border: 1px solid #D180AD; }
<div style="border:3px solid #D180AD">Div</div>
This div border color is #D180AD.
.myOpacity80 { color: #D180AD; opacity: 0.8; }
<p style="color:#D180AD;opacity:0.8;">80%</p>
Text with #D180AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D180AD;}
<p style="text-shadow: 3px 3px 1px #D180AD">Text here.</p>
This text has shadow with #D180AD color.
.textShadow {text-shadow: 3px 3px 1px #D180AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D180AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D180AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D180AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D180AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D180AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D180AD; -webkit-box-shadow: 1px 1px 3px 2px #D180AD; box-shadow: 1px 1px 3px 2px #D180AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D180AD; -webkit-box-shadow: 1px 1px 3px 2px #D180AD; box-shadow:1px 1px 3px 2px #D180AD;">
Div content here</div>
This text has color #D180AD on black background.
This text has color #D180AD on white background.
This text has black color on #D180AD background.
This text has white color on #D180AD background.