We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ba6da8 + 01a7b2e commit 62cda45Copy full SHA for 62cda45
src/Protocol/Models/Color.cs
@@ -8,21 +8,21 @@ public class Color
8
/// <summary>
9
/// The red component of this color in the range [0-1].
10
/// </summary>
11
- public int Red { get; set; }
+ public double Red { get; set; }
12
13
14
/// The green component of this color in the range [0-1].
15
16
- public int Green { get; set; }
+ public double Green { get; set; }
17
18
19
/// The blue component of this color in the range [0-1].
20
21
- public int Blue { get; set; }
+ public double Blue { get; set; }
22
23
24
/// The alpha component of this color in the range [0-1].
25
26
- public int Alpha { get; set; }
+ public double Alpha { get; set; }
27
}
28
0 commit comments