HEX: #C77DDD
RGB: (199,125,221)
#C77DDD contains mainly red and blue colors. Web safe color of #C77DDD is #CC66CC (or #C6C).
#C77DDD color RGB value is (199,125,221).
RGB: (199,125,221) (78%,49%,87%)
R 199 of 255 = 78%
G 125 of 255 = 49%
B 221 of 255 = 87%
R + G + B ~ 71%. #C77DDD is quite light color.
R + G + B =
199 + 125 + 221 = 545 (100%)
R 199 of 545 ~ 36.51%
G 125 of 545 ~ 22.94%
B 221 of 545 ~ 40.55%
#C77DDD color CMYK value is (10,43,0,13).
CMYK: (10,43,0,13) C10M43Y0K13 (10%,43%,0%,13%) (0.10/0.43/0.00/0.13)
C7 | 7D | DD | |
---|---|---|---|
RGB | 199 | 125 | 221 |
HSL | 286° | 58.54% | 67.84% |
HSB/HSV | 286° | 43.44% | 86.67% |
CMYK | 9.95% | 43.44% | 0.00% |
13.33% |
HEX | C7 | 7D | DD |
Decimal | 199 | 125 | 221 |
Binary | 11000111 | 1111101 | 11011101 |
Octal | 307 | 175 | 335 |
Examples of css and html codes for elements with #C77DDD color. Also use rgb(199,125,221) instead hex code.
.myTextColor { color: #C77DDD; }
<p style="color:#C77DDD">This sample text font color is #C77DDD.</p>
This text font color is #C77DDD.
.myBgColor { background-color: #C77DDD; }
<div style="background-color:#C77DDD">Inner text</div>
This div background color is #C77DDD.
.myBorderColor { border: 1px solid #C77DDD; }
<div style="border:3px solid #C77DDD">Div</div>
This div border color is #C77DDD.
.myOpacity80 { color: #C77DDD; opacity: 0.8; }
<p style="color:#C77DDD;opacity:0.8;">80%</p>
Text with #C77DDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C77DDD;}
<p style="text-shadow: 3px 3px 1px #C77DDD">Text here.</p>
This text has shadow with #C77DDD color.
.textShadow {text-shadow: 3px 3px 1px #C77DDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C77DDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C77DDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C77DDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C77DDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C77DDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C77DDD; -webkit-box-shadow: 1px 1px 3px 2px #C77DDD; box-shadow: 1px 1px 3px 2px #C77DDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C77DDD; -webkit-box-shadow: 1px 1px 3px 2px #C77DDD; box-shadow:1px 1px 3px 2px #C77DDD;">
Div content here</div>
This text has color #C77DDD on black background.
This text has color #C77DDD on white background.
This text has black color on #C77DDD background.
This text has white color on #C77DDD background.