HEX: #72B4EA
RGB: (114,180,234)
#72B4EA contains mainly green and blue colors. Web safe color of #72B4EA is #66CCFF (or #6CF).
#72B4EA color RGB value is (114,180,234).
RGB: (114,180,234) (45%,71%,92%)
R 114 of 255 = 45%
G 180 of 255 = 71%
B 234 of 255 = 92%
R + G + B ~ 69%. #72B4EA is quite light color.
R + G + B =
114 + 180 + 234 = 528 (100%)
R 114 of 528 ~ 21.59%
G 180 of 528 ~ 34.09%
B 234 of 528 ~ 44.32%
#72B4EA color CMYK value is (51,23,0,8).
CMYK: (51,23,0,8) C51M23Y0K8 (51%,23%,0%,8%) (0.51/0.23/0.00/0.08)
72 | B4 | EA | |
---|---|---|---|
RGB | 114 | 180 | 234 |
HSL | 207° | 74.07% | 68.24% |
HSB/HSV | 207° | 51.28% | 91.76% |
CMYK | 51.28% | 23.08% | 0.00% |
8.24% |
HEX | 72 | B4 | EA |
Decimal | 114 | 180 | 234 |
Binary | 1110010 | 10110100 | 11101010 |
Octal | 162 | 264 | 352 |
Examples of css and html codes for elements with #72B4EA color. Also use rgb(114,180,234) instead hex code.
.myTextColor { color: #72B4EA; }
<p style="color:#72B4EA">This sample text font color is #72B4EA.</p>
This text font color is #72B4EA.
.myBgColor { background-color: #72B4EA; }
<div style="background-color:#72B4EA">Inner text</div>
This div background color is #72B4EA.
.myBorderColor { border: 1px solid #72B4EA; }
<div style="border:3px solid #72B4EA">Div</div>
This div border color is #72B4EA.
.myOpacity80 { color: #72B4EA; opacity: 0.8; }
<p style="color:#72B4EA;opacity:0.8;">80%</p>
Text with #72B4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72B4EA;}
<p style="text-shadow: 3px 3px 1px #72B4EA">Text here.</p>
This text has shadow with #72B4EA color.
.textShadow {text-shadow: 3px 3px 1px #72B4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72B4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #72B4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72B4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72B4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #72B4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72B4EA; -webkit-box-shadow: 1px 1px 3px 2px #72B4EA; box-shadow: 1px 1px 3px 2px #72B4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72B4EA; -webkit-box-shadow: 1px 1px 3px 2px #72B4EA; box-shadow:1px 1px 3px 2px #72B4EA;">
Div content here</div>
This text has color #72B4EA on black background.
This text has color #72B4EA on white background.
This text has black color on #72B4EA background.
This text has white color on #72B4EA background.