HEX: #48B5CE
RGB: (72,181,206)
#48B5CE contains mainly green and blue colors. Web safe color of #48B5CE is #33CCCC (or #3CC).
#48B5CE color RGB value is (72,181,206).
RGB: (72,181,206) (28%,71%,81%)
R 72 of 255 = 28%
G 181 of 255 = 71%
B 206 of 255 = 81%
R + G + B ~ 60%. #48B5CE is middle color (not dark and not light).
R + G + B =
72 + 181 + 206 = 459 (100%)
R 72 of 459 ~ 15.69%
G 181 of 459 ~ 39.43%
B 206 of 459 ~ 44.88%
#48B5CE color CMYK value is (65,12,0,19).
CMYK: (65,12,0,19) C65M12Y0K19 (65%,12%,0%,19%) (0.65/0.12/0.00/0.19)
48 | B5 | CE | |
---|---|---|---|
RGB | 72 | 181 | 206 |
HSL | 191° | 57.76% | 54.51% |
HSB/HSV | 191° | 65.05% | 80.78% |
CMYK | 65.05% | 12.14% | 0.00% |
19.22% |
HEX | 48 | B5 | CE |
Decimal | 72 | 181 | 206 |
Binary | 1001000 | 10110101 | 11001110 |
Octal | 110 | 265 | 316 |
Examples of css and html codes for elements with #48B5CE color. Also use rgb(72,181,206) instead hex code.
.myTextColor { color: #48B5CE; }
<p style="color:#48B5CE">This sample text font color is #48B5CE.</p>
This text font color is #48B5CE.
.myBgColor { background-color: #48B5CE; }
<div style="background-color:#48B5CE">Inner text</div>
This div background color is #48B5CE.
.myBorderColor { border: 1px solid #48B5CE; }
<div style="border:3px solid #48B5CE">Div</div>
This div border color is #48B5CE.
.myOpacity80 { color: #48B5CE; opacity: 0.8; }
<p style="color:#48B5CE;opacity:0.8;">80%</p>
Text with #48B5CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48B5CE;}
<p style="text-shadow: 3px 3px 1px #48B5CE">Text here.</p>
This text has shadow with #48B5CE color.
.textShadow {text-shadow: 3px 3px 1px #48B5CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48B5CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #48B5CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48B5CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48B5CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #48B5CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48B5CE; -webkit-box-shadow: 1px 1px 3px 2px #48B5CE; box-shadow: 1px 1px 3px 2px #48B5CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48B5CE; -webkit-box-shadow: 1px 1px 3px 2px #48B5CE; box-shadow:1px 1px 3px 2px #48B5CE;">
Div content here</div>
This text has color #48B5CE on black background.
This text has color #48B5CE on white background.
This text has black color on #48B5CE background.
This text has white color on #48B5CE background.