HEX: #C777BB
RGB: (199,119,187)
#C777BB contains mainly red and blue colors. Web safe color of #C777BB is #CC66CC (or #C6C).
#C777BB color RGB value is (199,119,187).
RGB: (199,119,187) (78%,47%,73%)
R 199 of 255 = 78%
G 119 of 255 = 47%
B 187 of 255 = 73%
R + G + B ~ 66%. #C777BB is quite light color.
R + G + B =
199 + 119 + 187 = 505 (100%)
R 199 of 505 ~ 39.41%
G 119 of 505 ~ 23.56%
B 187 of 505 ~ 37.03%
#C777BB color CMYK value is (0,40,6,22).
CMYK: (0,40,6,22) C0M40Y6K22 (0%,40%,6%,22%) (0.00/0.40/0.06/0.22)
C7 | 77 | BB | |
---|---|---|---|
RGB | 199 | 119 | 187 |
HSL | 309° | 41.67% | 62.35% |
HSB/HSV | 309° | 40.20% | 78.04% |
CMYK | 0.00% | 40.20% | 6.03% |
21.96% |
HEX | C7 | 77 | BB |
Decimal | 199 | 119 | 187 |
Binary | 11000111 | 1110111 | 10111011 |
Octal | 307 | 167 | 273 |
Examples of css and html codes for elements with #C777BB color. Also use rgb(199,119,187) instead hex code.
.myTextColor { color: #C777BB; }
<p style="color:#C777BB">This sample text font color is #C777BB.</p>
This text font color is #C777BB.
.myBgColor { background-color: #C777BB; }
<div style="background-color:#C777BB">Inner text</div>
This div background color is #C777BB.
.myBorderColor { border: 1px solid #C777BB; }
<div style="border:3px solid #C777BB">Div</div>
This div border color is #C777BB.
.myOpacity80 { color: #C777BB; opacity: 0.8; }
<p style="color:#C777BB;opacity:0.8;">80%</p>
Text with #C777BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C777BB;}
<p style="text-shadow: 3px 3px 1px #C777BB">Text here.</p>
This text has shadow with #C777BB color.
.textShadow {text-shadow: 3px 3px 1px #C777BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C777BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C777BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C777BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C777BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C777BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C777BB; -webkit-box-shadow: 1px 1px 3px 2px #C777BB; box-shadow: 1px 1px 3px 2px #C777BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C777BB; -webkit-box-shadow: 1px 1px 3px 2px #C777BB; box-shadow:1px 1px 3px 2px #C777BB;">
Div content here</div>
This text has color #C777BB on black background.
This text has color #C777BB on white background.
This text has black color on #C777BB background.
This text has white color on #C777BB background.