HEX: #AB3761
RGB: (171,55,97)
#AB3761 contains mainly red color. Web safe color of #AB3761 is #993366 (or #936).
#AB3761 color RGB value is (171,55,97).
RGB: (171,55,97) (67%,22%,38%)
R 171 of 255 = 67%
G 55 of 255 = 22%
B 97 of 255 = 38%
R + G + B ~ 42%. #AB3761 is middle color (not dark and not light).
R + G + B =
171 + 55 + 97 = 323 (100%)
R 171 of 323 ~ 52.94%
G 55 of 323 ~ 17.03%
B 97 of 323 ~ 30.03%
#AB3761 color CMYK value is (0,68,43,33).
CMYK: (0,68,43,33) C0M68Y43K33 (0%,68%,43%,33%) (0.00/0.68/0.43/0.33)
AB | 37 | 61 | |
---|---|---|---|
RGB | 171 | 55 | 97 |
HSL | 338° | 51.33% | 44.31% |
HSB/HSV | 338° | 67.84% | 67.06% |
CMYK | 0.00% | 67.84% | 43.27% |
32.94% |
HEX | AB | 37 | 61 |
Decimal | 171 | 55 | 97 |
Binary | 10101011 | 110111 | 1100001 |
Octal | 253 | 67 | 141 |
Examples of css and html codes for elements with #AB3761 color. Also use rgb(171,55,97) instead hex code.
.myTextColor { color: #AB3761; }
<p style="color:#AB3761">This sample text font color is #AB3761.</p>
This text font color is #AB3761.
.myBgColor { background-color: #AB3761; }
<div style="background-color:#AB3761">Inner text</div>
This div background color is #AB3761.
.myBorderColor { border: 1px solid #AB3761; }
<div style="border:3px solid #AB3761">Div</div>
This div border color is #AB3761.
.myOpacity80 { color: #AB3761; opacity: 0.8; }
<p style="color:#AB3761;opacity:0.8;">80%</p>
Text with #AB3761 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB3761;}
<p style="text-shadow: 3px 3px 1px #AB3761">Text here.</p>
This text has shadow with #AB3761 color.
.textShadow {text-shadow: 3px 3px 1px #AB3761, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB3761, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB3761 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB3761, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB3761, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB3761 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB3761; -webkit-box-shadow: 1px 1px 3px 2px #AB3761; box-shadow: 1px 1px 3px 2px #AB3761; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB3761; -webkit-box-shadow: 1px 1px 3px 2px #AB3761; box-shadow:1px 1px 3px 2px #AB3761;">
Div content here</div>
This text has color #AB3761 on black background.
This text has color #AB3761 on white background.
This text has black color on #AB3761 background.
This text has white color on #AB3761 background.