HEX: #CE76C1
RGB: (206,118,193)
#CE76C1 contains mainly red and blue colors. Web safe color of #CE76C1 is #CC66CC (or #C6C).
#CE76C1 color RGB value is (206,118,193).
RGB: (206,118,193) (81%,46%,76%)
R 206 of 255 = 81%
G 118 of 255 = 46%
B 193 of 255 = 76%
R + G + B ~ 68%. #CE76C1 is quite light color.
R + G + B =
206 + 118 + 193 = 517 (100%)
R 206 of 517 ~ 39.85%
G 118 of 517 ~ 22.82%
B 193 of 517 ~ 37.33%
#CE76C1 color CMYK value is (0,43,6,19).
CMYK: (0,43,6,19) C0M43Y6K19 (0%,43%,6%,19%) (0.00/0.43/0.06/0.19)
CE | 76 | C1 | |
---|---|---|---|
RGB | 206 | 118 | 193 |
HSL | 309° | 47.31% | 63.53% |
HSB/HSV | 309° | 42.72% | 80.78% |
CMYK | 0.00% | 42.72% | 6.31% |
19.22% |
HEX | CE | 76 | C1 |
Decimal | 206 | 118 | 193 |
Binary | 11001110 | 1110110 | 11000001 |
Octal | 316 | 166 | 301 |
Examples of css and html codes for elements with #CE76C1 color. Also use rgb(206,118,193) instead hex code.
.myTextColor { color: #CE76C1; }
<p style="color:#CE76C1">This sample text font color is #CE76C1.</p>
This text font color is #CE76C1.
.myBgColor { background-color: #CE76C1; }
<div style="background-color:#CE76C1">Inner text</div>
This div background color is #CE76C1.
.myBorderColor { border: 1px solid #CE76C1; }
<div style="border:3px solid #CE76C1">Div</div>
This div border color is #CE76C1.
.myOpacity80 { color: #CE76C1; opacity: 0.8; }
<p style="color:#CE76C1;opacity:0.8;">80%</p>
Text with #CE76C1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CE76C1;}
<p style="text-shadow: 3px 3px 1px #CE76C1">Text here.</p>
This text has shadow with #CE76C1 color.
.textShadow {text-shadow: 3px 3px 1px #CE76C1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CE76C1, 5px 5px 20px red">Text here.</p>
This text has shadow with #CE76C1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CE76C1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CE76C1, Direction=45, Strength=4)">Text</p>
This text has shadow with #CE76C1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CE76C1; -webkit-box-shadow: 1px 1px 3px 2px #CE76C1; box-shadow: 1px 1px 3px 2px #CE76C1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CE76C1; -webkit-box-shadow: 1px 1px 3px 2px #CE76C1; box-shadow:1px 1px 3px 2px #CE76C1;">
Div content here</div>
This text has color #CE76C1 on black background.
This text has color #CE76C1 on white background.
This text has black color on #CE76C1 background.
This text has white color on #CE76C1 background.