HEX: #E2D6EB
RGB: (226,214,235)
#E2D6EB contains red, green and blue colors in about the same proportion. Web safe color of #E2D6EB is #CCCCFF (or #CCF).
#E2D6EB color RGB value is (226,214,235).
RGB: (226,214,235) (89%,84%,92%)
R 226 of 255 = 89%
G 214 of 255 = 84%
B 235 of 255 = 92%
R + G + B ~ 88%. #E2D6EB is light color.
R + G + B =
226 + 214 + 235 = 675 (100%)
R 226 of 675 ~ 33.48%
G 214 of 675 ~ 31.7%
B 235 of 675 ~ 34.81%
#E2D6EB color CMYK value is (4,9,0,8).
CMYK: (4,9,0,8) C4M9Y0K8 (4%,9%,0%,8%) (0.04/0.09/0.00/0.08)
E2 | D6 | EB | |
---|---|---|---|
RGB | 226 | 214 | 235 |
HSL | 274° | 34.43% | 88.04% |
HSB/HSV | 274° | 8.94% | 92.16% |
CMYK | 3.83% | 8.94% | 0.00% |
7.84% |
HEX | E2 | D6 | EB |
Decimal | 226 | 214 | 235 |
Binary | 11100010 | 11010110 | 11101011 |
Octal | 342 | 326 | 353 |
Examples of css and html codes for elements with #E2D6EB color. Also use rgb(226,214,235) instead hex code.
.myTextColor { color: #E2D6EB; }
<p style="color:#E2D6EB">This sample text font color is #E2D6EB.</p>
This text font color is #E2D6EB.
.myBgColor { background-color: #E2D6EB; }
<div style="background-color:#E2D6EB">Inner text</div>
This div background color is #E2D6EB.
.myBorderColor { border: 1px solid #E2D6EB; }
<div style="border:3px solid #E2D6EB">Div</div>
This div border color is #E2D6EB.
.myOpacity80 { color: #E2D6EB; opacity: 0.8; }
<p style="color:#E2D6EB;opacity:0.8;">80%</p>
Text with #E2D6EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2D6EB;}
<p style="text-shadow: 3px 3px 1px #E2D6EB">Text here.</p>
This text has shadow with #E2D6EB color.
.textShadow {text-shadow: 3px 3px 1px #E2D6EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2D6EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2D6EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2D6EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2D6EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2D6EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2D6EB; -webkit-box-shadow: 1px 1px 3px 2px #E2D6EB; box-shadow: 1px 1px 3px 2px #E2D6EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2D6EB; -webkit-box-shadow: 1px 1px 3px 2px #E2D6EB; box-shadow:1px 1px 3px 2px #E2D6EB;">
Div content here</div>
This text has color #E2D6EB on black background.
This text has color #E2D6EB on white background.
This text has black color on #E2D6EB background.
This text has white color on #E2D6EB background.