HEX: #0272B4
RGB: (2,114,180)
#0272B4 contains mainly blue color. Web safe color of #0272B4 is #0066CC (or #06C).
#0272B4 color RGB value is (2,114,180).
RGB: (2,114,180) (1%,45%,71%)
R 2 of 255 = 1%
G 114 of 255 = 45%
B 180 of 255 = 71%
R + G + B ~ 39%. #0272B4 is quite dark color.
R + G + B =
2 + 114 + 180 = 296 (100%)
R 2 of 296 ~ 0.68%
G 114 of 296 ~ 38.51%
B 180 of 296 ~ 60.81%
#0272B4 color CMYK value is (99,37,0,29).
CMYK: (99,37,0,29) C99M37Y0K29 (99%,37%,0%,29%) (0.99/0.37/0.00/0.29)
02 | 72 | B4 | |
---|---|---|---|
RGB | 2 | 114 | 180 |
HSL | 202° | 97.80% | 35.69% |
HSB/HSV | 202° | 98.89% | 70.59% |
CMYK | 98.89% | 36.67% | 0.00% |
29.41% |
HEX | 02 | 72 | B4 |
Decimal | 2 | 114 | 180 |
Binary | 10 | 1110010 | 10110100 |
Octal | 2 | 162 | 264 |
Examples of css and html codes for elements with #0272B4 color. Also use rgb(2,114,180) instead hex code.
.myTextColor { color: #0272B4; }
<p style="color:#0272B4">This sample text font color is #0272B4.</p>
This text font color is #0272B4.
.myBgColor { background-color: #0272B4; }
<div style="background-color:#0272B4">Inner text</div>
This div background color is #0272B4.
.myBorderColor { border: 1px solid #0272B4; }
<div style="border:3px solid #0272B4">Div</div>
This div border color is #0272B4.
.myOpacity80 { color: #0272B4; opacity: 0.8; }
<p style="color:#0272B4;opacity:0.8;">80%</p>
Text with #0272B4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0272B4;}
<p style="text-shadow: 3px 3px 1px #0272B4">Text here.</p>
This text has shadow with #0272B4 color.
.textShadow {text-shadow: 3px 3px 1px #0272B4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0272B4, 5px 5px 20px red">Text here.</p>
This text has shadow with #0272B4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0272B4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0272B4, Direction=45, Strength=4)">Text</p>
This text has shadow with #0272B4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0272B4; -webkit-box-shadow: 1px 1px 3px 2px #0272B4; box-shadow: 1px 1px 3px 2px #0272B4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0272B4; -webkit-box-shadow: 1px 1px 3px 2px #0272B4; box-shadow:1px 1px 3px 2px #0272B4;">
Div content here</div>
This text has color #0272B4 on black background.
This text has color #0272B4 on white background.
This text has black color on #0272B4 background.
This text has white color on #0272B4 background.