HEX: #C4BBE2
RGB: (196,187,226)
#C4BBE2 contains red, green and blue colors in about the same proportion. Web safe color of #C4BBE2 is #CCCCCC (or #CCC).
#C4BBE2 color RGB value is (196,187,226).
RGB: (196,187,226) (77%,73%,89%)
R 196 of 255 = 77%
G 187 of 255 = 73%
B 226 of 255 = 89%
R + G + B ~ 80%. #C4BBE2 is quite light color.
R + G + B =
196 + 187 + 226 = 609 (100%)
R 196 of 609 ~ 32.18%
G 187 of 609 ~ 30.71%
B 226 of 609 ~ 37.11%
#C4BBE2 color CMYK value is (13,17,0,11).
CMYK: (13,17,0,11) C13M17Y0K11 (13%,17%,0%,11%) (0.13/0.17/0.00/0.11)
C4 | BB | E2 | |
---|---|---|---|
RGB | 196 | 187 | 226 |
HSL | 254° | 40.21% | 80.98% |
HSB/HSV | 254° | 17.26% | 88.63% |
CMYK | 13.27% | 17.26% | 0.00% |
11.37% |
HEX | C4 | BB | E2 |
Decimal | 196 | 187 | 226 |
Binary | 11000100 | 10111011 | 11100010 |
Octal | 304 | 273 | 342 |
Examples of css and html codes for elements with #C4BBE2 color. Also use rgb(196,187,226) instead hex code.
.myTextColor { color: #C4BBE2; }
<p style="color:#C4BBE2">This sample text font color is #C4BBE2.</p>
This text font color is #C4BBE2.
.myBgColor { background-color: #C4BBE2; }
<div style="background-color:#C4BBE2">Inner text</div>
This div background color is #C4BBE2.
.myBorderColor { border: 1px solid #C4BBE2; }
<div style="border:3px solid #C4BBE2">Div</div>
This div border color is #C4BBE2.
.myOpacity80 { color: #C4BBE2; opacity: 0.8; }
<p style="color:#C4BBE2;opacity:0.8;">80%</p>
Text with #C4BBE2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4BBE2;}
<p style="text-shadow: 3px 3px 1px #C4BBE2">Text here.</p>
This text has shadow with #C4BBE2 color.
.textShadow {text-shadow: 3px 3px 1px #C4BBE2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4BBE2, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4BBE2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4BBE2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4BBE2, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4BBE2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4BBE2; -webkit-box-shadow: 1px 1px 3px 2px #C4BBE2; box-shadow: 1px 1px 3px 2px #C4BBE2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4BBE2; -webkit-box-shadow: 1px 1px 3px 2px #C4BBE2; box-shadow:1px 1px 3px 2px #C4BBE2;">
Div content here</div>
This text has color #C4BBE2 on black background.
This text has color #C4BBE2 on white background.
This text has black color on #C4BBE2 background.
This text has white color on #C4BBE2 background.