Fix #5919
This commit is contained in:
parent
c9a1ebccc8
commit
ccf6a49871
2 changed files with 7 additions and 3 deletions
|
@ -950,6 +950,7 @@
|
|||
<string name="rendering_value_pink_name">Pink</string>
|
||||
<string name="rendering_value_translucent_pink_name">Translucent pink</string>
|
||||
<string name="rendering_value_brown_name">Brown</string>
|
||||
<string name="rendering_value_black_name">Black</string>
|
||||
<string name="rendering_value_translucent_purple_name">Translucent purple</string>
|
||||
<string name="restart_is_required">Restart the app manually to apply all changes.</string>
|
||||
<string name="light_theme">Light</string>
|
||||
|
|
|
@ -38,7 +38,8 @@ public class ColorDialogs {
|
|||
R.string.rendering_value_blue_name,
|
||||
R.string.rendering_value_purple_name,
|
||||
R.string.rendering_value_pink_name,
|
||||
R.string.rendering_value_brown_name
|
||||
R.string.rendering_value_brown_name,
|
||||
R.string.rendering_value_black_name
|
||||
};
|
||||
|
||||
public static int[] pallette = new int[] {
|
||||
|
@ -52,7 +53,8 @@ public class ColorDialogs {
|
|||
0xb41010a0,
|
||||
0xb4a71de1,
|
||||
0xb4e044bb,
|
||||
0xb48e2512
|
||||
0xb48e2512,
|
||||
0xff000001
|
||||
};
|
||||
|
||||
public static String[] paletteColorTags = new String[] {
|
||||
|
@ -66,7 +68,8 @@ public class ColorDialogs {
|
|||
"blue",
|
||||
"purple",
|
||||
"pink",
|
||||
"brown"
|
||||
"brown",
|
||||
"black"
|
||||
};
|
||||
|
||||
private static double getDistanceBetweenColors(int color1, int color2) {
|
||||
|
|
Loading…
Reference in a new issue