HEX: #AE82BB
RGB: (174,130,187)
#AE82BB contains red, green and blue colors in about the same proportion. Web safe color of #AE82BB is #9999CC (or #99C).
#AE82BB color RGB value is (174,130,187).
RGB: (174,130,187) (68%,51%,73%)
R 174 of 255 = 68%
G 130 of 255 = 51%
B 187 of 255 = 73%
R + G + B ~ 64%. #AE82BB is quite light color.
R + G + B =
174 + 130 + 187 = 491 (100%)
R 174 of 491 ~ 35.44%
G 130 of 491 ~ 26.48%
B 187 of 491 ~ 38.09%
#AE82BB color CMYK value is (7,30,0,27).
CMYK: (7,30,0,27) C7M30Y0K27 (7%,30%,0%,27%) (0.07/0.30/0.00/0.27)
AE | 82 | BB | |
---|---|---|---|
RGB | 174 | 130 | 187 |
HSL | 286° | 29.53% | 62.16% |
HSB/HSV | 286° | 30.48% | 73.33% |
CMYK | 6.95% | 30.48% | 0.00% |
26.67% |
HEX | AE | 82 | BB |
Decimal | 174 | 130 | 187 |
Binary | 10101110 | 10000010 | 10111011 |
Octal | 256 | 202 | 273 |
Examples of css and html codes for elements with #AE82BB color. Also use rgb(174,130,187) instead hex code.
.myTextColor { color: #AE82BB; }
<p style="color:#AE82BB">This sample text font color is #AE82BB.</p>
This text font color is #AE82BB.
.myBgColor { background-color: #AE82BB; }
<div style="background-color:#AE82BB">Inner text</div>
This div background color is #AE82BB.
.myBorderColor { border: 1px solid #AE82BB; }
<div style="border:3px solid #AE82BB">Div</div>
This div border color is #AE82BB.
.myOpacity80 { color: #AE82BB; opacity: 0.8; }
<p style="color:#AE82BB;opacity:0.8;">80%</p>
Text with #AE82BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE82BB;}
<p style="text-shadow: 3px 3px 1px #AE82BB">Text here.</p>
This text has shadow with #AE82BB color.
.textShadow {text-shadow: 3px 3px 1px #AE82BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE82BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE82BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE82BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE82BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE82BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE82BB; -webkit-box-shadow: 1px 1px 3px 2px #AE82BB; box-shadow: 1px 1px 3px 2px #AE82BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE82BB; -webkit-box-shadow: 1px 1px 3px 2px #AE82BB; box-shadow:1px 1px 3px 2px #AE82BB;">
Div content here</div>
This text has color #AE82BB on black background.
This text has color #AE82BB on white background.
This text has black color on #AE82BB background.
This text has white color on #AE82BB background.