You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Generate a list of colors with alpha values. According to the feeding color,
57
-
* this method generate a list of colors with different alpha values.
58
-
*
59
-
* @param givenColor The color to generate the alpha values for.
60
-
* @param colorCount The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30.
61
-
* Even someone passes number more than 30, this will returns only 30 colors.
62
-
* @return A list of colors with alpha values.
63
-
*/
58
+
59
+
///
60
+
/// Generate a list of colors with alpha values. According to the feeding color,
61
+
/// this method generate a list of colors with different alpha values.
62
+
///
63
+
/// - Parameters:
64
+
/// - givenColor: The color to generate the alpha values for.
65
+
/// - colorCount: The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30. Even someone passes number more than 30, this will returns only 30 colors.
66
+
///
67
+
/// - Returns: A list of colors with alpha values.
* Generate a list of colors with brightness property change in given color. According to the feeding color,
78
-
* this method generate a list of colors with different brightnesses.
79
-
*
80
-
* @param givenColor The color to generate the brightness values for.
81
-
* @param colorCount The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30.
82
-
* Even someone passes number more than 30, this will returns only 30 colors.
83
-
* @return A list of colors.
84
-
*/
81
+
///
82
+
/// Generate a list of colors with brightness property change in given color. According to the feeding color,
83
+
/// this method generate a list of colors with different brightnesses.
84
+
///
85
+
/// - Parameters:
86
+
/// - givenColor: The color to generate the brightness values for.
87
+
/// - colorCount: The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30. Even someone passes number more than 30, this will returns only 30 colors.
@@ -97,15 +103,16 @@ public class KvColorPalette {
97
103
return colorList
98
104
}
99
105
100
-
/**
101
-
* Generate a list of colors with saturation property change in given color. According to the feeding color,
102
-
* this method generate a list of colors with different saturations.
103
-
*
104
-
* @param givenColor The color to generate the saturation values for.
105
-
* @param colorCount The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30.
106
-
* Even someone passes number more than 30, this will returns only 30 colors.
107
-
* @return A list of colors.
108
-
*/
106
+
///
107
+
/// Generate a list of colors with saturation property change in given color. According to the feeding color,
108
+
/// this method generate a list of colors with different saturations.
109
+
///
110
+
/// - Parameters:
111
+
/// - givenColor: The color to generate the saturation values for.
112
+
/// - colorCount: The number of colors to generate. In default that returns 10 colors. This accept integer value in a range of 2 - 30. Even someone passes number more than 30, this will returns only 30 colors.
0 commit comments