HEX: #0C255A
RGB: (12,37,90)
#0C255A contains mainly green and blue colors. Web safe color of #0C255A is #003366 (or #036).
#0C255A color RGB value is (12,37,90).
RGB: (12,37,90) (5%,15%,35%)
R 12 of 255 = 5%
G 37 of 255 = 15%
B 90 of 255 = 35%
R + G + B ~ 18%. #0C255A is dark color.
R + G + B =
12 + 37 + 90 = 139 (100%)
R 12 of 139 ~ 8.63%
G 37 of 139 ~ 26.62%
B 90 of 139 ~ 64.75%
#0C255A color CMYK value is (87,59,0,65).
CMYK: (87,59,0,65) C87M59Y0K65 (87%,59%,0%,65%) (0.87/0.59/0.00/0.65)
0C | 25 | 5A | |
---|---|---|---|
RGB | 12 | 37 | 90 |
HSL | 221° | 76.47% | 20.00% |
HSB/HSV | 221° | 86.67% | 35.29% |
CMYK | 86.67% | 58.89% | 0.00% |
64.71% |
HEX | 0C | 25 | 5A |
Decimal | 12 | 37 | 90 |
Binary | 1100 | 100101 | 1011010 |
Octal | 14 | 45 | 132 |
Examples of css and html codes for elements with #0C255A color. Also use rgb(12,37,90) instead hex code.
.myTextColor { color: #0C255A; }
<p style="color:#0C255A">This sample text font color is #0C255A.</p>
This text font color is #0C255A.
.myBgColor { background-color: #0C255A; }
<div style="background-color:#0C255A">Inner text</div>
This div background color is #0C255A.
.myBorderColor { border: 1px solid #0C255A; }
<div style="border:3px solid #0C255A">Div</div>
This div border color is #0C255A.
.myOpacity80 { color: #0C255A; opacity: 0.8; }
<p style="color:#0C255A;opacity:0.8;">80%</p>
Text with #0C255A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0C255A;}
<p style="text-shadow: 3px 3px 1px #0C255A">Text here.</p>
This text has shadow with #0C255A color.
.textShadow {text-shadow: 3px 3px 1px #0C255A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0C255A, 5px 5px 20px red">Text here.</p>
This text has shadow with #0C255A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0C255A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0C255A, Direction=45, Strength=4)">Text</p>
This text has shadow with #0C255A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0C255A; -webkit-box-shadow: 1px 1px 3px 2px #0C255A; box-shadow: 1px 1px 3px 2px #0C255A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0C255A; -webkit-box-shadow: 1px 1px 3px 2px #0C255A; box-shadow:1px 1px 3px 2px #0C255A;">
Div content here</div>
This text has color #0C255A on black background.
This text has color #0C255A on white background.
This text has black color on #0C255A background.
This text has white color on #0C255A background.