HEX: #C990BE
RGB: (201,144,190)
#C990BE contains red, green and blue colors in about the same proportion. Web safe color of #C990BE is #CC99CC (or #C9C).
#C990BE color RGB value is (201,144,190).
RGB: (201,144,190) (79%,56%,75%)
R 201 of 255 = 79%
G 144 of 255 = 56%
B 190 of 255 = 75%
R + G + B ~ 70%. #C990BE is quite light color.
R + G + B =
201 + 144 + 190 = 535 (100%)
R 201 of 535 ~ 37.57%
G 144 of 535 ~ 26.92%
B 190 of 535 ~ 35.51%
#C990BE color CMYK value is (0,28,5,21).
CMYK: (0,28,5,21) C0M28Y5K21 (0%,28%,5%,21%) (0.00/0.28/0.05/0.21)
C9 | 90 | BE | |
---|---|---|---|
RGB | 201 | 144 | 190 |
HSL | 312° | 34.55% | 67.65% |
HSB/HSV | 312° | 28.36% | 78.82% |
CMYK | 0.00% | 28.36% | 5.47% |
21.18% |
HEX | C9 | 90 | BE |
Decimal | 201 | 144 | 190 |
Binary | 11001001 | 10010000 | 10111110 |
Octal | 311 | 220 | 276 |
Examples of css and html codes for elements with #C990BE color. Also use rgb(201,144,190) instead hex code.
.myTextColor { color: #C990BE; }
<p style="color:#C990BE">This sample text font color is #C990BE.</p>
This text font color is #C990BE.
.myBgColor { background-color: #C990BE; }
<div style="background-color:#C990BE">Inner text</div>
This div background color is #C990BE.
.myBorderColor { border: 1px solid #C990BE; }
<div style="border:3px solid #C990BE">Div</div>
This div border color is #C990BE.
.myOpacity80 { color: #C990BE; opacity: 0.8; }
<p style="color:#C990BE;opacity:0.8;">80%</p>
Text with #C990BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C990BE;}
<p style="text-shadow: 3px 3px 1px #C990BE">Text here.</p>
This text has shadow with #C990BE color.
.textShadow {text-shadow: 3px 3px 1px #C990BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C990BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C990BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C990BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C990BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C990BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C990BE; -webkit-box-shadow: 1px 1px 3px 2px #C990BE; box-shadow: 1px 1px 3px 2px #C990BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C990BE; -webkit-box-shadow: 1px 1px 3px 2px #C990BE; box-shadow:1px 1px 3px 2px #C990BE;">
Div content here</div>
This text has color #C990BE on black background.
This text has color #C990BE on white background.
This text has black color on #C990BE background.
This text has white color on #C990BE background.