HEX: #0CB0CE
RGB: (12,176,206)
#0CB0CE contains mainly green and blue colors. Web safe color of #0CB0CE is #0099CC (or #09C).
#0CB0CE color RGB value is (12,176,206).
RGB: (12,176,206) (5%,69%,81%)
R 12 of 255 = 5%
G 176 of 255 = 69%
B 206 of 255 = 81%
R + G + B ~ 52%. #0CB0CE is middle color (not dark and not light).
R + G + B =
12 + 176 + 206 = 394 (100%)
R 12 of 394 ~ 3.05%
G 176 of 394 ~ 44.67%
B 206 of 394 ~ 52.28%
#0CB0CE color CMYK value is (94,15,0,19).
CMYK: (94,15,0,19) C94M15Y0K19 (94%,15%,0%,19%) (0.94/0.15/0.00/0.19)
0C | B0 | CE | |
---|---|---|---|
RGB | 12 | 176 | 206 |
HSL | 189° | 88.99% | 42.75% |
HSB/HSV | 189° | 94.17% | 80.78% |
CMYK | 94.17% | 14.56% | 0.00% |
19.22% |
HEX | 0C | B0 | CE |
Decimal | 12 | 176 | 206 |
Binary | 1100 | 10110000 | 11001110 |
Octal | 14 | 260 | 316 |
Examples of css and html codes for elements with #0CB0CE color. Also use rgb(12,176,206) instead hex code.
.myTextColor { color: #0CB0CE; }
<p style="color:#0CB0CE">This sample text font color is #0CB0CE.</p>
This text font color is #0CB0CE.
.myBgColor { background-color: #0CB0CE; }
<div style="background-color:#0CB0CE">Inner text</div>
This div background color is #0CB0CE.
.myBorderColor { border: 1px solid #0CB0CE; }
<div style="border:3px solid #0CB0CE">Div</div>
This div border color is #0CB0CE.
.myOpacity80 { color: #0CB0CE; opacity: 0.8; }
<p style="color:#0CB0CE;opacity:0.8;">80%</p>
Text with #0CB0CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0CB0CE;}
<p style="text-shadow: 3px 3px 1px #0CB0CE">Text here.</p>
This text has shadow with #0CB0CE color.
.textShadow {text-shadow: 3px 3px 1px #0CB0CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0CB0CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #0CB0CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0CB0CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0CB0CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #0CB0CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0CB0CE; -webkit-box-shadow: 1px 1px 3px 2px #0CB0CE; box-shadow: 1px 1px 3px 2px #0CB0CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0CB0CE; -webkit-box-shadow: 1px 1px 3px 2px #0CB0CE; box-shadow:1px 1px 3px 2px #0CB0CE;">
Div content here</div>
This text has color #0CB0CE on black background.
This text has color #0CB0CE on white background.
This text has black color on #0CB0CE background.
This text has white color on #0CB0CE background.