HEX: #C984B7
RGB: (201,132,183)
#C984B7 contains mainly red and blue colors. Web safe color of #C984B7 is #CC99CC (or #C9C).
#C984B7 color RGB value is (201,132,183).
RGB: (201,132,183) (79%,52%,72%)
R 201 of 255 = 79%
G 132 of 255 = 52%
B 183 of 255 = 72%
R + G + B ~ 68%. #C984B7 is quite light color.
R + G + B =
201 + 132 + 183 = 516 (100%)
R 201 of 516 ~ 38.95%
G 132 of 516 ~ 25.58%
B 183 of 516 ~ 35.47%
#C984B7 color CMYK value is (0,34,9,21).
CMYK: (0,34,9,21) C0M34Y9K21 (0%,34%,9%,21%) (0.00/0.34/0.09/0.21)
C9 | 84 | B7 | |
---|---|---|---|
RGB | 201 | 132 | 183 |
HSL | 316° | 38.98% | 65.29% |
HSB/HSV | 316° | 34.33% | 78.82% |
CMYK | 0.00% | 34.33% | 8.96% |
21.18% |
HEX | C9 | 84 | B7 |
Decimal | 201 | 132 | 183 |
Binary | 11001001 | 10000100 | 10110111 |
Octal | 311 | 204 | 267 |
Examples of css and html codes for elements with #C984B7 color. Also use rgb(201,132,183) instead hex code.
.myTextColor { color: #C984B7; }
<p style="color:#C984B7">This sample text font color is #C984B7.</p>
This text font color is #C984B7.
.myBgColor { background-color: #C984B7; }
<div style="background-color:#C984B7">Inner text</div>
This div background color is #C984B7.
.myBorderColor { border: 1px solid #C984B7; }
<div style="border:3px solid #C984B7">Div</div>
This div border color is #C984B7.
.myOpacity80 { color: #C984B7; opacity: 0.8; }
<p style="color:#C984B7;opacity:0.8;">80%</p>
Text with #C984B7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C984B7;}
<p style="text-shadow: 3px 3px 1px #C984B7">Text here.</p>
This text has shadow with #C984B7 color.
.textShadow {text-shadow: 3px 3px 1px #C984B7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C984B7, 5px 5px 20px red">Text here.</p>
This text has shadow with #C984B7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C984B7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C984B7, Direction=45, Strength=4)">Text</p>
This text has shadow with #C984B7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C984B7; -webkit-box-shadow: 1px 1px 3px 2px #C984B7; box-shadow: 1px 1px 3px 2px #C984B7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C984B7; -webkit-box-shadow: 1px 1px 3px 2px #C984B7; box-shadow:1px 1px 3px 2px #C984B7;">
Div content here</div>
This text has color #C984B7 on black background.
This text has color #C984B7 on white background.
This text has black color on #C984B7 background.
This text has white color on #C984B7 background.