15 references to Color
Microsoft.Maui (1)
Animations\AnimationLerpingExtensions.cs (1)
17
return new
Color
(r, g, b, a);
Microsoft.Maui.Controls (1)
Compatibility\Handlers\Shell\iOS\ShellSectionRootHeader.cs (1)
44
CollectionView.BackgroundColor = new
Color
(backgroundColor.Red, backgroundColor.Green, backgroundColor.Blue, .863f).ToPlatform();
Microsoft.Maui.Graphics (13)
CanvasDefaults.cs (1)
5
public static readonly Color DefaultShadowColor = new
Color
(0f, 0f, 0f, .5f);
Color.cs (11)
156
return new
Color
(Red, Green, Blue, alpha);
161
return new
Color
(Red, Green, Blue, Alpha * multiplyBy);
296
return new
Color
(red / 255f, green / 255f, blue / 255f, 1f);
301
return new
Color
(red / 255f, green / 255f, blue / 255f, alpha / 255f);
306
return new
Color
(red / 255f, green / 255f, blue / 255f, 1f);
311
return new
Color
(red / 255f, green / 255f, blue / 255f, alpha / 255f);
326
return new
Color
(r, g, b, a);
331
return new
Color
((float)r, (float)g, (float)b, (float)a);
452
return new
Color
(red, green, blue, a);
459
return new
Color
(red, green, blue, (float)a);
625
color = new
Color
((float)r, (float)g, (float)b, (float)a);
GradientPaint.cs (1)
255
return new
Color
(r, g, b, a);