HEX: #6F87AB
RGB: (111,135,171)
#6F87AB contains mainly green and blue colors. Web safe color of #6F87AB is #669999 (or #699).
#6F87AB color RGB value is (111,135,171).
RGB: (111,135,171) (44%,53%,67%)
R 111 of 255 = 44%
G 135 of 255 = 53%
B 171 of 255 = 67%
R + G + B ~ 55%. #6F87AB is middle color (not dark and not light).
R + G + B =
111 + 135 + 171 = 417 (100%)
R 111 of 417 ~ 26.62%
G 135 of 417 ~ 32.37%
B 171 of 417 ~ 41.01%
#6F87AB color CMYK value is (35,21,0,33).
CMYK: (35,21,0,33) C35M21Y0K33 (35%,21%,0%,33%) (0.35/0.21/0.00/0.33)
6F | 87 | AB | |
---|---|---|---|
RGB | 111 | 135 | 171 |
HSL | 216° | 26.32% | 55.29% |
HSB/HSV | 216° | 35.09% | 67.06% |
CMYK | 35.09% | 21.05% | 0.00% |
32.94% |
HEX | 6F | 87 | AB |
Decimal | 111 | 135 | 171 |
Binary | 1101111 | 10000111 | 10101011 |
Octal | 157 | 207 | 253 |
Examples of css and html codes for elements with #6F87AB color. Also use rgb(111,135,171) instead hex code.
.myTextColor { color: #6F87AB; }
<p style="color:#6F87AB">This sample text font color is #6F87AB.</p>
This text font color is #6F87AB.
.myBgColor { background-color: #6F87AB; }
<div style="background-color:#6F87AB">Inner text</div>
This div background color is #6F87AB.
.myBorderColor { border: 1px solid #6F87AB; }
<div style="border:3px solid #6F87AB">Div</div>
This div border color is #6F87AB.
.myOpacity80 { color: #6F87AB; opacity: 0.8; }
<p style="color:#6F87AB;opacity:0.8;">80%</p>
Text with #6F87AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F87AB;}
<p style="text-shadow: 3px 3px 1px #6F87AB">Text here.</p>
This text has shadow with #6F87AB color.
.textShadow {text-shadow: 3px 3px 1px #6F87AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F87AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F87AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F87AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F87AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F87AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F87AB; -webkit-box-shadow: 1px 1px 3px 2px #6F87AB; box-shadow: 1px 1px 3px 2px #6F87AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F87AB; -webkit-box-shadow: 1px 1px 3px 2px #6F87AB; box-shadow:1px 1px 3px 2px #6F87AB;">
Div content here</div>
This text has color #6F87AB on black background.
This text has color #6F87AB on white background.
This text has black color on #6F87AB background.
This text has white color on #6F87AB background.