HEX: #AF5763
RGB: (175,87,99)
#AF5763 contains mainly red color. Web safe color of #AF5763 is #996666 (or #966).
#AF5763 color RGB value is (175,87,99).
RGB: (175,87,99) (69%,34%,39%)
R 175 of 255 = 69%
G 87 of 255 = 34%
B 99 of 255 = 39%
R + G + B ~ 47%. #AF5763 is middle color (not dark and not light).
R + G + B =
175 + 87 + 99 = 361 (100%)
R 175 of 361 ~ 48.48%
G 87 of 361 ~ 24.1%
B 99 of 361 ~ 27.42%
#AF5763 color CMYK value is (0,50,43,31).
CMYK: (0,50,43,31) C0M50Y43K31 (0%,50%,43%,31%) (0.00/0.50/0.43/0.31)
AF | 57 | 63 | |
---|---|---|---|
RGB | 175 | 87 | 99 |
HSL | 352° | 35.48% | 51.37% |
HSB/HSV | 352° | 50.29% | 68.63% |
CMYK | 0.00% | 50.29% | 43.43% |
31.37% |
HEX | AF | 57 | 63 |
Decimal | 175 | 87 | 99 |
Binary | 10101111 | 1010111 | 1100011 |
Octal | 257 | 127 | 143 |
Examples of css and html codes for elements with #AF5763 color. Also use rgb(175,87,99) instead hex code.
.myTextColor { color: #AF5763; }
<p style="color:#AF5763">This sample text font color is #AF5763.</p>
This text font color is #AF5763.
.myBgColor { background-color: #AF5763; }
<div style="background-color:#AF5763">Inner text</div>
This div background color is #AF5763.
.myBorderColor { border: 1px solid #AF5763; }
<div style="border:3px solid #AF5763">Div</div>
This div border color is #AF5763.
.myOpacity80 { color: #AF5763; opacity: 0.8; }
<p style="color:#AF5763;opacity:0.8;">80%</p>
Text with #AF5763 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF5763;}
<p style="text-shadow: 3px 3px 1px #AF5763">Text here.</p>
This text has shadow with #AF5763 color.
.textShadow {text-shadow: 3px 3px 1px #AF5763, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF5763, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF5763 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF5763, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF5763, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF5763 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF5763; -webkit-box-shadow: 1px 1px 3px 2px #AF5763; box-shadow: 1px 1px 3px 2px #AF5763; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF5763; -webkit-box-shadow: 1px 1px 3px 2px #AF5763; box-shadow:1px 1px 3px 2px #AF5763;">
Div content here</div>
This text has color #AF5763 on black background.
This text has color #AF5763 on white background.
This text has black color on #AF5763 background.
This text has white color on #AF5763 background.