HEX: #CE75BB
RGB: (206,117,187)
#CE75BB contains mainly red and blue colors. Web safe color of #CE75BB is #CC66CC (or #C6C).
#CE75BB color RGB value is (206,117,187).
RGB: (206,117,187) (81%,46%,73%)
R 206 of 255 = 81%
G 117 of 255 = 46%
B 187 of 255 = 73%
R + G + B ~ 67%. #CE75BB is quite light color.
R + G + B =
206 + 117 + 187 = 510 (100%)
R 206 of 510 ~ 40.39%
G 117 of 510 ~ 22.94%
B 187 of 510 ~ 36.67%
#CE75BB color CMYK value is (0,43,9,19).
CMYK: (0,43,9,19) C0M43Y9K19 (0%,43%,9%,19%) (0.00/0.43/0.09/0.19)
CE | 75 | BB | |
---|---|---|---|
RGB | 206 | 117 | 187 |
HSL | 313° | 47.59% | 63.33% |
HSB/HSV | 313° | 43.20% | 80.78% |
CMYK | 0.00% | 43.20% | 9.22% |
19.22% |
HEX | CE | 75 | BB |
Decimal | 206 | 117 | 187 |
Binary | 11001110 | 1110101 | 10111011 |
Octal | 316 | 165 | 273 |
Examples of css and html codes for elements with #CE75BB color. Also use rgb(206,117,187) instead hex code.
.myTextColor { color: #CE75BB; }
<p style="color:#CE75BB">This sample text font color is #CE75BB.</p>
This text font color is #CE75BB.
.myBgColor { background-color: #CE75BB; }
<div style="background-color:#CE75BB">Inner text</div>
This div background color is #CE75BB.
.myBorderColor { border: 1px solid #CE75BB; }
<div style="border:3px solid #CE75BB">Div</div>
This div border color is #CE75BB.
.myOpacity80 { color: #CE75BB; opacity: 0.8; }
<p style="color:#CE75BB;opacity:0.8;">80%</p>
Text with #CE75BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CE75BB;}
<p style="text-shadow: 3px 3px 1px #CE75BB">Text here.</p>
This text has shadow with #CE75BB color.
.textShadow {text-shadow: 3px 3px 1px #CE75BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CE75BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #CE75BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CE75BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CE75BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #CE75BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CE75BB; -webkit-box-shadow: 1px 1px 3px 2px #CE75BB; box-shadow: 1px 1px 3px 2px #CE75BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CE75BB; -webkit-box-shadow: 1px 1px 3px 2px #CE75BB; box-shadow:1px 1px 3px 2px #CE75BB;">
Div content here</div>
This text has color #CE75BB on black background.
This text has color #CE75BB on white background.
This text has black color on #CE75BB background.
This text has white color on #CE75BB background.