HEX: #6FB5CB
RGB: (111,181,203)
#6FB5CB contains mainly green and blue colors. Web safe color of #6FB5CB is #66CCCC (or #6CC).
#6FB5CB color RGB value is (111,181,203).
RGB: (111,181,203) (44%,71%,80%)
R 111 of 255 = 44%
G 181 of 255 = 71%
B 203 of 255 = 80%
R + G + B ~ 65%. #6FB5CB is quite light color.
R + G + B =
111 + 181 + 203 = 495 (100%)
R 111 of 495 ~ 22.42%
G 181 of 495 ~ 36.57%
B 203 of 495 ~ 41.01%
#6FB5CB color CMYK value is (45,11,0,20).
CMYK: (45,11,0,20) C45M11Y0K20 (45%,11%,0%,20%) (0.45/0.11/0.00/0.20)
6F | B5 | CB | |
---|---|---|---|
RGB | 111 | 181 | 203 |
HSL | 194° | 46.94% | 61.57% |
HSB/HSV | 194° | 45.32% | 79.61% |
CMYK | 45.32% | 10.84% | 0.00% |
20.39% |
HEX | 6F | B5 | CB |
Decimal | 111 | 181 | 203 |
Binary | 1101111 | 10110101 | 11001011 |
Octal | 157 | 265 | 313 |
Examples of css and html codes for elements with #6FB5CB color. Also use rgb(111,181,203) instead hex code.
.myTextColor { color: #6FB5CB; }
<p style="color:#6FB5CB">This sample text font color is #6FB5CB.</p>
This text font color is #6FB5CB.
.myBgColor { background-color: #6FB5CB; }
<div style="background-color:#6FB5CB">Inner text</div>
This div background color is #6FB5CB.
.myBorderColor { border: 1px solid #6FB5CB; }
<div style="border:3px solid #6FB5CB">Div</div>
This div border color is #6FB5CB.
.myOpacity80 { color: #6FB5CB; opacity: 0.8; }
<p style="color:#6FB5CB;opacity:0.8;">80%</p>
Text with #6FB5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6FB5CB;}
<p style="text-shadow: 3px 3px 1px #6FB5CB">Text here.</p>
This text has shadow with #6FB5CB color.
.textShadow {text-shadow: 3px 3px 1px #6FB5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6FB5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6FB5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6FB5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6FB5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6FB5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6FB5CB; -webkit-box-shadow: 1px 1px 3px 2px #6FB5CB; box-shadow: 1px 1px 3px 2px #6FB5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6FB5CB; -webkit-box-shadow: 1px 1px 3px 2px #6FB5CB; box-shadow:1px 1px 3px 2px #6FB5CB;">
Div content here</div>
This text has color #6FB5CB on black background.
This text has color #6FB5CB on white background.
This text has black color on #6FB5CB background.
This text has white color on #6FB5CB background.