HEX: #6F8EEC
RGB: (111,142,236)
#6F8EEC contains mainly blue color. Web safe color of #6F8EEC is #6699FF (or #69F).
#6F8EEC color RGB value is (111,142,236).
RGB: (111,142,236) (44%,56%,93%)
R 111 of 255 = 44%
G 142 of 255 = 56%
B 236 of 255 = 93%
R + G + B ~ 64%. #6F8EEC is quite light color.
R + G + B =
111 + 142 + 236 = 489 (100%)
R 111 of 489 ~ 22.7%
G 142 of 489 ~ 29.04%
B 236 of 489 ~ 48.26%
#6F8EEC color CMYK value is (53,40,0,7).
CMYK: (53,40,0,7) C53M40Y0K7 (53%,40%,0%,7%) (0.53/0.40/0.00/0.07)
6F | 8E | EC | |
---|---|---|---|
RGB | 111 | 142 | 236 |
HSL | 225° | 76.69% | 68.04% |
HSB/HSV | 225° | 52.97% | 92.55% |
CMYK | 52.97% | 39.83% | 0.00% |
7.45% |
HEX | 6F | 8E | EC |
Decimal | 111 | 142 | 236 |
Binary | 1101111 | 10001110 | 11101100 |
Octal | 157 | 216 | 354 |
Examples of css and html codes for elements with #6F8EEC color. Also use rgb(111,142,236) instead hex code.
.myTextColor { color: #6F8EEC; }
<p style="color:#6F8EEC">This sample text font color is #6F8EEC.</p>
This text font color is #6F8EEC.
.myBgColor { background-color: #6F8EEC; }
<div style="background-color:#6F8EEC">Inner text</div>
This div background color is #6F8EEC.
.myBorderColor { border: 1px solid #6F8EEC; }
<div style="border:3px solid #6F8EEC">Div</div>
This div border color is #6F8EEC.
.myOpacity80 { color: #6F8EEC; opacity: 0.8; }
<p style="color:#6F8EEC;opacity:0.8;">80%</p>
Text with #6F8EEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F8EEC;}
<p style="text-shadow: 3px 3px 1px #6F8EEC">Text here.</p>
This text has shadow with #6F8EEC color.
.textShadow {text-shadow: 3px 3px 1px #6F8EEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F8EEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F8EEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F8EEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F8EEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F8EEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F8EEC; -webkit-box-shadow: 1px 1px 3px 2px #6F8EEC; box-shadow: 1px 1px 3px 2px #6F8EEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F8EEC; -webkit-box-shadow: 1px 1px 3px 2px #6F8EEC; box-shadow:1px 1px 3px 2px #6F8EEC;">
Div content here</div>
This text has color #6F8EEC on black background.
This text has color #6F8EEC on white background.
This text has black color on #6F8EEC background.
This text has white color on #6F8EEC background.