Hex #bee4fd Color

#bee4fd
equivalent to

RGB

(190, 228, 253)

Details of #bee4fd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
190
66.7082
0.57
0.25
88.6979
73.5258
204°
85.7472
228
73.5258
0.94
0.10
-6.9424
0.2736
25°
-11.1905
253
103.6045
0.87
0.00   0.01
-16.2008
0.3015
99°
-11.5894

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10111110
276
190
BE
Green
11100100
344
228
E4
Blue
11111101
375
253
FD

RGB in % of #bee4fd

%28.32
%33.98
%37.70

CMYK in % of #bee4fd

%25
%10
%0
%1

Triads of color #bee4fd

#bee4fd #e4fdbe #fdbefd

Similar Colors to #bee4fd

#bee4fd #befdf7 #bec5fd

Preview Color #bee4fd on black ground

#bee4fd is very interesting for text.

Preview Color #bee4fd on white ground

#bee4fd is very interesting for text.

CSS Codes #bee4fd color

.mybgcolor {background-color:#bee4fd; }
.myforecolor {color:#bee4fd; }
.mybordercolor {border:3px solid #bee4fd; }

Text Font Color #bee4fd

<p style="color:#bee4fd">Text here</p>

This sample text font color is #bee4fd
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #bee4fd

<div style="background-color:#bee4fd">
Div content here</div>

This div background color is #bee4fd


Border Color #bee4fd

<div style="border:3px solid #bee4fd">
Div here</div>

The color of this border is #bee4fd


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #bee4fd; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #bee4fd;
-webkit-box-shadow: 1px 1px 3px 2px #bee4fd;
box-shadow:         1px 1px 3px 2px #bee4fd; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #bee4fd">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #bee4fd;
  -webkit-box-shadow: 1px 1px 3px 2px #bee4fd;
  box-shadow:         1px 1px 3px 2px #bee4fd;">
Div content here</div>

The shadow of div box using color #bee4fd