HEX: #AE364B
RGB: (174,54,75)
#AE364B contains mainly red color. Web safe color of #AE364B is #993333 (or #933).
#AE364B color RGB value is (174,54,75).
RGB: (174,54,75) (68%,21%,29%)
R 174 of 255 = 68%
G 54 of 255 = 21%
B 75 of 255 = 29%
R + G + B ~ 39%. #AE364B is quite dark color.
R + G + B =
174 + 54 + 75 = 303 (100%)
R 174 of 303 ~ 57.43%
G 54 of 303 ~ 17.82%
B 75 of 303 ~ 24.75%
#AE364B color CMYK value is (0,69,57,32).
CMYK: (0,69,57,32) C0M69Y57K32 (0%,69%,57%,32%) (0.00/0.69/0.57/0.32)
AE | 36 | 4B | |
---|---|---|---|
RGB | 174 | 54 | 75 |
HSL | 350° | 52.63% | 44.71% |
HSB/HSV | 350° | 68.97% | 68.24% |
CMYK | 0.00% | 68.97% | 56.90% |
31.76% |
HEX | AE | 36 | 4B |
Decimal | 174 | 54 | 75 |
Binary | 10101110 | 110110 | 1001011 |
Octal | 256 | 66 | 113 |
Examples of css and html codes for elements with #AE364B color. Also use rgb(174,54,75) instead hex code.
.myTextColor { color: #AE364B; }
<p style="color:#AE364B">This sample text font color is #AE364B.</p>
This text font color is #AE364B.
.myBgColor { background-color: #AE364B; }
<div style="background-color:#AE364B">Inner text</div>
This div background color is #AE364B.
.myBorderColor { border: 1px solid #AE364B; }
<div style="border:3px solid #AE364B">Div</div>
This div border color is #AE364B.
.myOpacity80 { color: #AE364B; opacity: 0.8; }
<p style="color:#AE364B;opacity:0.8;">80%</p>
Text with #AE364B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE364B;}
<p style="text-shadow: 3px 3px 1px #AE364B">Text here.</p>
This text has shadow with #AE364B color.
.textShadow {text-shadow: 3px 3px 1px #AE364B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE364B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE364B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE364B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE364B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE364B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE364B; -webkit-box-shadow: 1px 1px 3px 2px #AE364B; box-shadow: 1px 1px 3px 2px #AE364B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE364B; -webkit-box-shadow: 1px 1px 3px 2px #AE364B; box-shadow:1px 1px 3px 2px #AE364B;">
Div content here</div>
This text has color #AE364B on black background.
This text has color #AE364B on white background.
This text has black color on #AE364B background.
This text has white color on #AE364B background.