Skip to content
Snippets Groups Projects
Commit a2e00700 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #105 - change first grey color (to light, has no contrast to background) (categories)

parent 657c1d23
Branches
Tags
1 merge request!142merge v1_3_0 into master
...@@ -62,10 +62,10 @@ public class NewCategoryController ...@@ -62,10 +62,10 @@ public class NewCategoryController
ArrayList<Color> colors = new ArrayList<>(); ArrayList<Color> colors = new ArrayList<>();
//grey (light to dark) //grey (light to dark)
colors.add(Color.web("#ecf0f1"));
colors.add(Color.web("#CCCCCC")); colors.add(Color.web("#CCCCCC"));
colors.add(Color.web("#888888")); colors.add(Color.web("#888888"));
colors.add(Color.web("#333333")); colors.add(Color.web("#333333"));
colors.add(Color.rgb(255, 241, 119)); //lighyellow
colors.add(Color.rgb(255, 204, 0)); //yellow colors.add(Color.rgb(255, 204, 0)); //yellow
colors.add(Color.rgb(255, 149, 0)); //orange colors.add(Color.rgb(255, 149, 0)); //orange
colors.add(Color.rgb(255, 59, 48)); //red colors.add(Color.rgb(255, 59, 48)); //red
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment