HEX: #E3D3FB
RGB: (227,211,251)
#E3D3FB contains red, green and blue colors in about the same proportion. Web safe color of #E3D3FB is #CCCCFF (or #CCF).
#E3D3FB color RGB value is (227,211,251).
RGB: (227,211,251) (89%,83%,98%)
R 227 of 255 = 89%
G 211 of 255 = 83%
B 251 of 255 = 98%
R + G + B ~ 90%. #E3D3FB is light color.
R + G + B =
227 + 211 + 251 = 689 (100%)
R 227 of 689 ~ 32.95%
G 211 of 689 ~ 30.62%
B 251 of 689 ~ 36.43%
#E3D3FB color CMYK value is (10,16,0,2).
CMYK: (10,16,0,2) C10M16Y0K2 (10%,16%,0%,2%) (0.10/0.16/0.00/0.02)
E3 | D3 | FB | |
---|---|---|---|
RGB | 227 | 211 | 251 |
HSL | 264° | 83.33% | 90.59% |
HSB/HSV | 264° | 15.94% | 98.43% |
CMYK | 9.56% | 15.94% | 0.00% |
1.57% |
HEX | E3 | D3 | FB |
Decimal | 227 | 211 | 251 |
Binary | 11100011 | 11010011 | 11111011 |
Octal | 343 | 323 | 373 |
Examples of css and html codes for elements with #E3D3FB color. Also use rgb(227,211,251) instead hex code.
.myTextColor { color: #E3D3FB; }
<p style="color:#E3D3FB">This sample text font color is #E3D3FB.</p>
This text font color is #E3D3FB.
.myBgColor { background-color: #E3D3FB; }
<div style="background-color:#E3D3FB">Inner text</div>
This div background color is #E3D3FB.
.myBorderColor { border: 1px solid #E3D3FB; }
<div style="border:3px solid #E3D3FB">Div</div>
This div border color is #E3D3FB.
.myOpacity80 { color: #E3D3FB; opacity: 0.8; }
<p style="color:#E3D3FB;opacity:0.8;">80%</p>
Text with #E3D3FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3D3FB;}
<p style="text-shadow: 3px 3px 1px #E3D3FB">Text here.</p>
This text has shadow with #E3D3FB color.
.textShadow {text-shadow: 3px 3px 1px #E3D3FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3D3FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3D3FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3D3FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3D3FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3D3FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3D3FB; -webkit-box-shadow: 1px 1px 3px 2px #E3D3FB; box-shadow: 1px 1px 3px 2px #E3D3FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3D3FB; -webkit-box-shadow: 1px 1px 3px 2px #E3D3FB; box-shadow:1px 1px 3px 2px #E3D3FB;">
Div content here</div>
This text has color #E3D3FB on black background.
This text has color #E3D3FB on white background.
This text has black color on #E3D3FB background.
This text has white color on #E3D3FB background.