HEX: #0A15CB
RGB: (10,21,203)
#0A15CB contains mainly blue color. Web safe color of #0A15CB is #0000CC (or #00C).
#0A15CB color RGB value is (10,21,203).
RGB: (10,21,203) (4%,8%,80%)
R 10 of 255 = 4%
G 21 of 255 = 8%
B 203 of 255 = 80%
R + G + B ~ 31%. #0A15CB is quite dark color.
R + G + B =
10 + 21 + 203 = 234 (100%)
R 10 of 234 ~ 4.27%
G 21 of 234 ~ 8.97%
B 203 of 234 ~ 86.75%
#0A15CB color CMYK value is (95,90,0,20).
CMYK: (95,90,0,20) C95M90Y0K20 (95%,90%,0%,20%) (0.95/0.90/0.00/0.20)
0A | 15 | CB | |
---|---|---|---|
RGB | 10 | 21 | 203 |
HSL | 237° | 90.61% | 41.76% |
HSB/HSV | 237° | 95.07% | 79.61% |
CMYK | 95.07% | 89.66% | 0.00% |
20.39% |
HEX | 0A | 15 | CB |
Decimal | 10 | 21 | 203 |
Binary | 1010 | 10101 | 11001011 |
Octal | 12 | 25 | 313 |
Examples of css and html codes for elements with #0A15CB color. Also use rgb(10,21,203) instead hex code.
.myTextColor { color: #0A15CB; }
<p style="color:#0A15CB">This sample text font color is #0A15CB.</p>
This text font color is #0A15CB.
.myBgColor { background-color: #0A15CB; }
<div style="background-color:#0A15CB">Inner text</div>
This div background color is #0A15CB.
.myBorderColor { border: 1px solid #0A15CB; }
<div style="border:3px solid #0A15CB">Div</div>
This div border color is #0A15CB.
.myOpacity80 { color: #0A15CB; opacity: 0.8; }
<p style="color:#0A15CB;opacity:0.8;">80%</p>
Text with #0A15CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0A15CB;}
<p style="text-shadow: 3px 3px 1px #0A15CB">Text here.</p>
This text has shadow with #0A15CB color.
.textShadow {text-shadow: 3px 3px 1px #0A15CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0A15CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #0A15CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0A15CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0A15CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #0A15CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0A15CB; -webkit-box-shadow: 1px 1px 3px 2px #0A15CB; box-shadow: 1px 1px 3px 2px #0A15CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0A15CB; -webkit-box-shadow: 1px 1px 3px 2px #0A15CB; box-shadow:1px 1px 3px 2px #0A15CB;">
Div content here</div>
This text has color #0A15CB on black background.
This text has color #0A15CB on white background.
This text has black color on #0A15CB background.
This text has white color on #0A15CB background.