HEX: #C5BDED
RGB: (197,189,237)
#C5BDED contains red, green and blue colors in about the same proportion. Web safe color of #C5BDED is #CCCCFF (or #CCF).
#C5BDED color RGB value is (197,189,237).
RGB: (197,189,237) (77%,74%,93%)
R 197 of 255 = 77%
G 189 of 255 = 74%
B 237 of 255 = 93%
R + G + B ~ 81%. #C5BDED is quite light color.
R + G + B =
197 + 189 + 237 = 623 (100%)
R 197 of 623 ~ 31.62%
G 189 of 623 ~ 30.34%
B 237 of 623 ~ 38.04%
#C5BDED color CMYK value is (17,20,0,7).
CMYK: (17,20,0,7) C17M20Y0K7 (17%,20%,0%,7%) (0.17/0.20/0.00/0.07)
C5 | BD | ED | |
---|---|---|---|
RGB | 197 | 189 | 237 |
HSL | 250° | 57.14% | 83.53% |
HSB/HSV | 250° | 20.25% | 92.94% |
CMYK | 16.88% | 20.25% | 0.00% |
7.06% |
HEX | C5 | BD | ED |
Decimal | 197 | 189 | 237 |
Binary | 11000101 | 10111101 | 11101101 |
Octal | 305 | 275 | 355 |
Examples of css and html codes for elements with #C5BDED color. Also use rgb(197,189,237) instead hex code.
.myTextColor { color: #C5BDED; }
<p style="color:#C5BDED">This sample text font color is #C5BDED.</p>
This text font color is #C5BDED.
.myBgColor { background-color: #C5BDED; }
<div style="background-color:#C5BDED">Inner text</div>
This div background color is #C5BDED.
.myBorderColor { border: 1px solid #C5BDED; }
<div style="border:3px solid #C5BDED">Div</div>
This div border color is #C5BDED.
.myOpacity80 { color: #C5BDED; opacity: 0.8; }
<p style="color:#C5BDED;opacity:0.8;">80%</p>
Text with #C5BDED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5BDED;}
<p style="text-shadow: 3px 3px 1px #C5BDED">Text here.</p>
This text has shadow with #C5BDED color.
.textShadow {text-shadow: 3px 3px 1px #C5BDED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5BDED, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5BDED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5BDED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5BDED, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5BDED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5BDED; -webkit-box-shadow: 1px 1px 3px 2px #C5BDED; box-shadow: 1px 1px 3px 2px #C5BDED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5BDED; -webkit-box-shadow: 1px 1px 3px 2px #C5BDED; box-shadow:1px 1px 3px 2px #C5BDED;">
Div content here</div>
This text has color #C5BDED on black background.
This text has color #C5BDED on white background.
This text has black color on #C5BDED background.
This text has white color on #C5BDED background.