HEX: #AE97BA
RGB: (174,151,186)
#AE97BA contains red, green and blue colors in about the same proportion. Web safe color of #AE97BA is #9999CC (or #99C).
#AE97BA color RGB value is (174,151,186).
RGB: (174,151,186) (68%,59%,73%)
R 174 of 255 = 68%
G 151 of 255 = 59%
B 186 of 255 = 73%
R + G + B ~ 67%. #AE97BA is quite light color.
R + G + B =
174 + 151 + 186 = 511 (100%)
R 174 of 511 ~ 34.05%
G 151 of 511 ~ 29.55%
B 186 of 511 ~ 36.4%
#AE97BA color CMYK value is (6,19,0,27).
CMYK: (6,19,0,27) C6M19Y0K27 (6%,19%,0%,27%) (0.06/0.19/0.00/0.27)
AE | 97 | BA | |
---|---|---|---|
RGB | 174 | 151 | 186 |
HSL | 279° | 20.23% | 66.08% |
HSB/HSV | 279° | 18.82% | 72.94% |
CMYK | 6.45% | 18.82% | 0.00% |
27.06% |
HEX | AE | 97 | BA |
Decimal | 174 | 151 | 186 |
Binary | 10101110 | 10010111 | 10111010 |
Octal | 256 | 227 | 272 |
Examples of css and html codes for elements with #AE97BA color. Also use rgb(174,151,186) instead hex code.
.myTextColor { color: #AE97BA; }
<p style="color:#AE97BA">This sample text font color is #AE97BA.</p>
This text font color is #AE97BA.
.myBgColor { background-color: #AE97BA; }
<div style="background-color:#AE97BA">Inner text</div>
This div background color is #AE97BA.
.myBorderColor { border: 1px solid #AE97BA; }
<div style="border:3px solid #AE97BA">Div</div>
This div border color is #AE97BA.
.myOpacity80 { color: #AE97BA; opacity: 0.8; }
<p style="color:#AE97BA;opacity:0.8;">80%</p>
Text with #AE97BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE97BA;}
<p style="text-shadow: 3px 3px 1px #AE97BA">Text here.</p>
This text has shadow with #AE97BA color.
.textShadow {text-shadow: 3px 3px 1px #AE97BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE97BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE97BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE97BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE97BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE97BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE97BA; -webkit-box-shadow: 1px 1px 3px 2px #AE97BA; box-shadow: 1px 1px 3px 2px #AE97BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE97BA; -webkit-box-shadow: 1px 1px 3px 2px #AE97BA; box-shadow:1px 1px 3px 2px #AE97BA;">
Div content here</div>
This text has color #AE97BA on black background.
This text has color #AE97BA on white background.
This text has black color on #AE97BA background.
This text has white color on #AE97BA background.