HEX: #CEDAFB
RGB: (206,218,251)
#CEDAFB contains red, green and blue colors in about the same proportion. Web safe color of #CEDAFB is #CCCCFF (or #CCF).
#CEDAFB color RGB value is (206,218,251).
RGB: (206,218,251) (81%,85%,98%)
R 206 of 255 = 81%
G 218 of 255 = 85%
B 251 of 255 = 98%
R + G + B ~ 88%. #CEDAFB is light color.
R + G + B =
206 + 218 + 251 = 675 (100%)
R 206 of 675 ~ 30.52%
G 218 of 675 ~ 32.3%
B 251 of 675 ~ 37.19%
#CEDAFB color CMYK value is (18,13,0,2).
CMYK: (18,13,0,2) C18M13Y0K2 (18%,13%,0%,2%) (0.18/0.13/0.00/0.02)
CE | DA | FB | |
---|---|---|---|
RGB | 206 | 218 | 251 |
HSL | 224° | 84.91% | 89.61% |
HSB/HSV | 224° | 17.93% | 98.43% |
CMYK | 17.93% | 13.15% | 0.00% |
1.57% |
HEX | CE | DA | FB |
Decimal | 206 | 218 | 251 |
Binary | 11001110 | 11011010 | 11111011 |
Octal | 316 | 332 | 373 |
Examples of css and html codes for elements with #CEDAFB color. Also use rgb(206,218,251) instead hex code.
.myTextColor { color: #CEDAFB; }
<p style="color:#CEDAFB">This sample text font color is #CEDAFB.</p>
This text font color is #CEDAFB.
.myBgColor { background-color: #CEDAFB; }
<div style="background-color:#CEDAFB">Inner text</div>
This div background color is #CEDAFB.
.myBorderColor { border: 1px solid #CEDAFB; }
<div style="border:3px solid #CEDAFB">Div</div>
This div border color is #CEDAFB.
.myOpacity80 { color: #CEDAFB; opacity: 0.8; }
<p style="color:#CEDAFB;opacity:0.8;">80%</p>
Text with #CEDAFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEDAFB;}
<p style="text-shadow: 3px 3px 1px #CEDAFB">Text here.</p>
This text has shadow with #CEDAFB color.
.textShadow {text-shadow: 3px 3px 1px #CEDAFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEDAFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEDAFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEDAFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEDAFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEDAFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEDAFB; -webkit-box-shadow: 1px 1px 3px 2px #CEDAFB; box-shadow: 1px 1px 3px 2px #CEDAFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEDAFB; -webkit-box-shadow: 1px 1px 3px 2px #CEDAFB; box-shadow:1px 1px 3px 2px #CEDAFB;">
Div content here</div>
This text has color #CEDAFB on black background.
This text has color #CEDAFB on white background.
This text has black color on #CEDAFB background.
This text has white color on #CEDAFB background.