HEX: #AE2259
RGB: (174,34,89)
#AE2259 contains mainly red color. Web safe color of #AE2259 is #993366 (or #936).
#AE2259 color RGB value is (174,34,89).
RGB: (174,34,89) (68%,13%,35%)
R 174 of 255 = 68%
G 34 of 255 = 13%
B 89 of 255 = 35%
R + G + B ~ 39%. #AE2259 is quite dark color.
R + G + B =
174 + 34 + 89 = 297 (100%)
R 174 of 297 ~ 58.59%
G 34 of 297 ~ 11.45%
B 89 of 297 ~ 29.97%
#AE2259 color CMYK value is (0,80,49,32).
CMYK: (0,80,49,32) C0M80Y49K32 (0%,80%,49%,32%) (0.00/0.80/0.49/0.32)
AE | 22 | 59 | |
---|---|---|---|
RGB | 174 | 34 | 89 |
HSL | 336° | 67.31% | 40.78% |
HSB/HSV | 336° | 80.46% | 68.24% |
CMYK | 0.00% | 80.46% | 48.85% |
31.76% |
HEX | AE | 22 | 59 |
Decimal | 174 | 34 | 89 |
Binary | 10101110 | 100010 | 1011001 |
Octal | 256 | 42 | 131 |
Examples of css and html codes for elements with #AE2259 color. Also use rgb(174,34,89) instead hex code.
.myTextColor { color: #AE2259; }
<p style="color:#AE2259">This sample text font color is #AE2259.</p>
This text font color is #AE2259.
.myBgColor { background-color: #AE2259; }
<div style="background-color:#AE2259">Inner text</div>
This div background color is #AE2259.
.myBorderColor { border: 1px solid #AE2259; }
<div style="border:3px solid #AE2259">Div</div>
This div border color is #AE2259.
.myOpacity80 { color: #AE2259; opacity: 0.8; }
<p style="color:#AE2259;opacity:0.8;">80%</p>
Text with #AE2259 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE2259;}
<p style="text-shadow: 3px 3px 1px #AE2259">Text here.</p>
This text has shadow with #AE2259 color.
.textShadow {text-shadow: 3px 3px 1px #AE2259, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE2259, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE2259 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE2259, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE2259, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE2259 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE2259; -webkit-box-shadow: 1px 1px 3px 2px #AE2259; box-shadow: 1px 1px 3px 2px #AE2259; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE2259; -webkit-box-shadow: 1px 1px 3px 2px #AE2259; box-shadow:1px 1px 3px 2px #AE2259;">
Div content here</div>
This text has color #AE2259 on black background.
This text has color #AE2259 on white background.
This text has black color on #AE2259 background.
This text has white color on #AE2259 background.