HEX: #AE7BBD
RGB: (174,123,189)
#AE7BBD contains mainly red and blue colors. Web safe color of #AE7BBD is #9966CC (or #96C).
#AE7BBD color RGB value is (174,123,189).
RGB: (174,123,189) (68%,48%,74%)
R 174 of 255 = 68%
G 123 of 255 = 48%
B 189 of 255 = 74%
R + G + B ~ 63%. #AE7BBD is quite light color.
R + G + B =
174 + 123 + 189 = 486 (100%)
R 174 of 486 ~ 35.8%
G 123 of 486 ~ 25.31%
B 189 of 486 ~ 38.89%
#AE7BBD color CMYK value is (8,35,0,26).
CMYK: (8,35,0,26) C8M35Y0K26 (8%,35%,0%,26%) (0.08/0.35/0.00/0.26)
AE | 7B | BD | |
---|---|---|---|
RGB | 174 | 123 | 189 |
HSL | 286° | 33.33% | 61.18% |
HSB/HSV | 286° | 34.92% | 74.12% |
CMYK | 7.94% | 34.92% | 0.00% |
25.88% |
HEX | AE | 7B | BD |
Decimal | 174 | 123 | 189 |
Binary | 10101110 | 1111011 | 10111101 |
Octal | 256 | 173 | 275 |
Examples of css and html codes for elements with #AE7BBD color. Also use rgb(174,123,189) instead hex code.
.myTextColor { color: #AE7BBD; }
<p style="color:#AE7BBD">This sample text font color is #AE7BBD.</p>
This text font color is #AE7BBD.
.myBgColor { background-color: #AE7BBD; }
<div style="background-color:#AE7BBD">Inner text</div>
This div background color is #AE7BBD.
.myBorderColor { border: 1px solid #AE7BBD; }
<div style="border:3px solid #AE7BBD">Div</div>
This div border color is #AE7BBD.
.myOpacity80 { color: #AE7BBD; opacity: 0.8; }
<p style="color:#AE7BBD;opacity:0.8;">80%</p>
Text with #AE7BBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE7BBD;}
<p style="text-shadow: 3px 3px 1px #AE7BBD">Text here.</p>
This text has shadow with #AE7BBD color.
.textShadow {text-shadow: 3px 3px 1px #AE7BBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE7BBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE7BBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE7BBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE7BBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE7BBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE7BBD; -webkit-box-shadow: 1px 1px 3px 2px #AE7BBD; box-shadow: 1px 1px 3px 2px #AE7BBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE7BBD; -webkit-box-shadow: 1px 1px 3px 2px #AE7BBD; box-shadow:1px 1px 3px 2px #AE7BBD;">
Div content here</div>
This text has color #AE7BBD on black background.
This text has color #AE7BBD on white background.
This text has black color on #AE7BBD background.
This text has white color on #AE7BBD background.