HEX: #AE768C
RGB: (174,118,140)
#AE768C contains red, green and blue colors in about the same proportion. Web safe color of #AE768C is #996699 (or #969).
#AE768C color RGB value is (174,118,140).
RGB: (174,118,140) (68%,46%,55%)
R 174 of 255 = 68%
G 118 of 255 = 46%
B 140 of 255 = 55%
R + G + B ~ 56%. #AE768C is middle color (not dark and not light).
R + G + B =
174 + 118 + 140 = 432 (100%)
R 174 of 432 ~ 40.28%
G 118 of 432 ~ 27.31%
B 140 of 432 ~ 32.41%
#AE768C color CMYK value is (0,32,20,32).
CMYK: (0,32,20,32) C0M32Y20K32 (0%,32%,20%,32%) (0.00/0.32/0.20/0.32)
AE | 76 | 8C | |
---|---|---|---|
RGB | 174 | 118 | 140 |
HSL | 336° | 25.69% | 57.25% |
HSB/HSV | 336° | 32.18% | 68.24% |
CMYK | 0.00% | 32.18% | 19.54% |
31.76% |
HEX | AE | 76 | 8C |
Decimal | 174 | 118 | 140 |
Binary | 10101110 | 1110110 | 10001100 |
Octal | 256 | 166 | 214 |
Examples of css and html codes for elements with #AE768C color. Also use rgb(174,118,140) instead hex code.
.myTextColor { color: #AE768C; }
<p style="color:#AE768C">This sample text font color is #AE768C.</p>
This text font color is #AE768C.
.myBgColor { background-color: #AE768C; }
<div style="background-color:#AE768C">Inner text</div>
This div background color is #AE768C.
.myBorderColor { border: 1px solid #AE768C; }
<div style="border:3px solid #AE768C">Div</div>
This div border color is #AE768C.
.myOpacity80 { color: #AE768C; opacity: 0.8; }
<p style="color:#AE768C;opacity:0.8;">80%</p>
Text with #AE768C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE768C;}
<p style="text-shadow: 3px 3px 1px #AE768C">Text here.</p>
This text has shadow with #AE768C color.
.textShadow {text-shadow: 3px 3px 1px #AE768C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE768C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE768C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE768C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE768C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE768C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE768C; -webkit-box-shadow: 1px 1px 3px 2px #AE768C; box-shadow: 1px 1px 3px 2px #AE768C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE768C; -webkit-box-shadow: 1px 1px 3px 2px #AE768C; box-shadow:1px 1px 3px 2px #AE768C;">
Div content here</div>
This text has color #AE768C on black background.
This text has color #AE768C on white background.
This text has black color on #AE768C background.
This text has white color on #AE768C background.