HEX: #C5B3EA
RGB: (197,179,234)
#C5B3EA contains red, green and blue colors in about the same proportion. Web safe color of #C5B3EA is #CC99FF (or #C9F).
#C5B3EA color RGB value is (197,179,234).
RGB: (197,179,234) (77%,70%,92%)
R 197 of 255 = 77%
G 179 of 255 = 70%
B 234 of 255 = 92%
R + G + B ~ 80%. #C5B3EA is quite light color.
R + G + B =
197 + 179 + 234 = 610 (100%)
R 197 of 610 ~ 32.3%
G 179 of 610 ~ 29.34%
B 234 of 610 ~ 38.36%
#C5B3EA color CMYK value is (16,24,0,8).
CMYK: (16,24,0,8) C16M24Y0K8 (16%,24%,0%,8%) (0.16/0.24/0.00/0.08)
C5 | B3 | EA | |
---|---|---|---|
RGB | 197 | 179 | 234 |
HSL | 260° | 56.70% | 80.98% |
HSB/HSV | 260° | 23.50% | 91.76% |
CMYK | 15.81% | 23.50% | 0.00% |
8.24% |
HEX | C5 | B3 | EA |
Decimal | 197 | 179 | 234 |
Binary | 11000101 | 10110011 | 11101010 |
Octal | 305 | 263 | 352 |
Examples of css and html codes for elements with #C5B3EA color. Also use rgb(197,179,234) instead hex code.
.myTextColor { color: #C5B3EA; }
<p style="color:#C5B3EA">This sample text font color is #C5B3EA.</p>
This text font color is #C5B3EA.
.myBgColor { background-color: #C5B3EA; }
<div style="background-color:#C5B3EA">Inner text</div>
This div background color is #C5B3EA.
.myBorderColor { border: 1px solid #C5B3EA; }
<div style="border:3px solid #C5B3EA">Div</div>
This div border color is #C5B3EA.
.myOpacity80 { color: #C5B3EA; opacity: 0.8; }
<p style="color:#C5B3EA;opacity:0.8;">80%</p>
Text with #C5B3EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5B3EA;}
<p style="text-shadow: 3px 3px 1px #C5B3EA">Text here.</p>
This text has shadow with #C5B3EA color.
.textShadow {text-shadow: 3px 3px 1px #C5B3EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5B3EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5B3EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5B3EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5B3EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5B3EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5B3EA; -webkit-box-shadow: 1px 1px 3px 2px #C5B3EA; box-shadow: 1px 1px 3px 2px #C5B3EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5B3EA; -webkit-box-shadow: 1px 1px 3px 2px #C5B3EA; box-shadow:1px 1px 3px 2px #C5B3EA;">
Div content here</div>
This text has color #C5B3EA on black background.
This text has color #C5B3EA on white background.
This text has black color on #C5B3EA background.
This text has white color on #C5B3EA background.