HEX: #D7AEEB
RGB: (215,174,235)
#D7AEEB contains mainly red and blue colors. Web safe color of #D7AEEB is #CC99FF (or #C9F).
#D7AEEB color RGB value is (215,174,235).
RGB: (215,174,235) (84%,68%,92%)
R 215 of 255 = 84%
G 174 of 255 = 68%
B 235 of 255 = 92%
R + G + B ~ 81%. #D7AEEB is quite light color.
R + G + B =
215 + 174 + 235 = 624 (100%)
R 215 of 624 ~ 34.46%
G 174 of 624 ~ 27.88%
B 235 of 624 ~ 37.66%
#D7AEEB color CMYK value is (9,26,0,8).
CMYK: (9,26,0,8) C9M26Y0K8 (9%,26%,0%,8%) (0.09/0.26/0.00/0.08)
D7 | AE | EB | |
---|---|---|---|
RGB | 215 | 174 | 235 |
HSL | 280° | 60.40% | 80.20% |
HSB/HSV | 280° | 25.96% | 92.16% |
CMYK | 8.51% | 25.96% | 0.00% |
7.84% |
HEX | D7 | AE | EB |
Decimal | 215 | 174 | 235 |
Binary | 11010111 | 10101110 | 11101011 |
Octal | 327 | 256 | 353 |
Examples of css and html codes for elements with #D7AEEB color. Also use rgb(215,174,235) instead hex code.
.myTextColor { color: #D7AEEB; }
<p style="color:#D7AEEB">This sample text font color is #D7AEEB.</p>
This text font color is #D7AEEB.
.myBgColor { background-color: #D7AEEB; }
<div style="background-color:#D7AEEB">Inner text</div>
This div background color is #D7AEEB.
.myBorderColor { border: 1px solid #D7AEEB; }
<div style="border:3px solid #D7AEEB">Div</div>
This div border color is #D7AEEB.
.myOpacity80 { color: #D7AEEB; opacity: 0.8; }
<p style="color:#D7AEEB;opacity:0.8;">80%</p>
Text with #D7AEEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7AEEB;}
<p style="text-shadow: 3px 3px 1px #D7AEEB">Text here.</p>
This text has shadow with #D7AEEB color.
.textShadow {text-shadow: 3px 3px 1px #D7AEEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7AEEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7AEEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7AEEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7AEEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7AEEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7AEEB; -webkit-box-shadow: 1px 1px 3px 2px #D7AEEB; box-shadow: 1px 1px 3px 2px #D7AEEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7AEEB; -webkit-box-shadow: 1px 1px 3px 2px #D7AEEB; box-shadow:1px 1px 3px 2px #D7AEEB;">
Div content here</div>
This text has color #D7AEEB on black background.
This text has color #D7AEEB on white background.
This text has black color on #D7AEEB background.
This text has white color on #D7AEEB background.