fd760862fdfcafa70938a49f2c787abbb58b7d94
[jalview.git] / src / jalview / util / ColorUtils.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 /**
22  * author: Lauren Michelle Lui
23  */
24
25 package jalview.util;
26
27 import java.awt.Color;
28 import java.util.Random;
29
30 public class ColorUtils
31 {
32
33   /**
34    * Generates a random color, will mix with input color. Code taken from
35    * http://stackoverflow
36    * .com/questions/43044/algorithm-to-randomly-generate-an-aesthetically
37    * -pleasing-color-palette
38    * 
39    * @param mix
40    * @return Random color in RGB
41    */
42   public static final Color generateRandomColor(Color mix)
43   {
44     Random random = new Random();
45     int red = random.nextInt(256);
46     int green = random.nextInt(256);
47     int blue = random.nextInt(256);
48
49     // mix the color
50     if (mix != null)
51     {
52       red = (red + mix.getRed()) / 2;
53       green = (green + mix.getGreen()) / 2;
54       blue = (blue + mix.getBlue()) / 2;
55     }
56
57     Color color = new Color(red, green, blue);
58     return color;
59
60   }
61
62   /**
63    * Returns a colour three shades darker. Note you can't guarantee that
64    * brighterThan reverses this, as darkerThan may result in black.
65    * 
66    * @param col
67    * @return
68    */
69   public static Color darkerThan(Color col)
70   {
71     return col == null ? null : col.darker().darker().darker();
72   }
73
74   /**
75    * Returns a colour three shades brighter. Note you can't guarantee that
76    * darkerThan reverses this, as brighterThan may result in white.
77    * 
78    * @param col
79    * @return
80    */
81   public static Color brighterThan(Color col)
82   {
83     return col == null ? null : col.brighter().brighter().brighter();
84   }
85
86 }