HEX: #48E0FB
RGB: (72,224,251)
#48E0FB contains mainly green and blue colors. Web safe color of #48E0FB is #33CCFF (or #3CF).
#48E0FB color RGB value is (72,224,251).
RGB: (72,224,251) (28%,88%,98%)
R 72 of 255 = 28%
G 224 of 255 = 88%
B 251 of 255 = 98%
R + G + B ~ 71%. #48E0FB is quite light color.
R + G + B =
72 + 224 + 251 = 547 (100%)
R 72 of 547 ~ 13.16%
G 224 of 547 ~ 40.95%
B 251 of 547 ~ 45.89%
#48E0FB color CMYK value is (71,11,0,2).
CMYK: (71,11,0,2) C71M11Y0K2 (71%,11%,0%,2%) (0.71/0.11/0.00/0.02)
48 | E0 | FB | |
---|---|---|---|
RGB | 72 | 224 | 251 |
HSL | 189° | 95.72% | 63.33% |
HSB/HSV | 189° | 71.31% | 98.43% |
CMYK | 71.31% | 10.76% | 0.00% |
1.57% |
HEX | 48 | E0 | FB |
Decimal | 72 | 224 | 251 |
Binary | 1001000 | 11100000 | 11111011 |
Octal | 110 | 340 | 373 |
Examples of css and html codes for elements with #48E0FB color. Also use rgb(72,224,251) instead hex code.
.myTextColor { color: #48E0FB; }
<p style="color:#48E0FB">This sample text font color is #48E0FB.</p>
This text font color is #48E0FB.
.myBgColor { background-color: #48E0FB; }
<div style="background-color:#48E0FB">Inner text</div>
This div background color is #48E0FB.
.myBorderColor { border: 1px solid #48E0FB; }
<div style="border:3px solid #48E0FB">Div</div>
This div border color is #48E0FB.
.myOpacity80 { color: #48E0FB; opacity: 0.8; }
<p style="color:#48E0FB;opacity:0.8;">80%</p>
Text with #48E0FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48E0FB;}
<p style="text-shadow: 3px 3px 1px #48E0FB">Text here.</p>
This text has shadow with #48E0FB color.
.textShadow {text-shadow: 3px 3px 1px #48E0FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48E0FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #48E0FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48E0FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48E0FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #48E0FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48E0FB; -webkit-box-shadow: 1px 1px 3px 2px #48E0FB; box-shadow: 1px 1px 3px 2px #48E0FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48E0FB; -webkit-box-shadow: 1px 1px 3px 2px #48E0FB; box-shadow:1px 1px 3px 2px #48E0FB;">
Div content here</div>
This text has color #48E0FB on black background.
This text has color #48E0FB on white background.
This text has black color on #48E0FB background.
This text has white color on #48E0FB background.