]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/elementclass/slider/SliderColorProfile.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / elementclass / slider / SliderColorProfile.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.g2d.elementclass.slider;
13
14 import java.awt.Color;
15
16 /**
17  * @author Toni Kalajainen
18  */
19 public class SliderColorProfile {
20
21         public static final SliderColorProfile DEFAULT = new SliderColorProfile();
22         
23         public Color TRACK1 = new Color(150, 150, 150);
24         public Color TRACK2 = new Color(177, 177, 177);
25         public Color TRACK3 = new Color(196, 196, 196);
26         
27     public Color HANDLE1 = new Color(206, 206, 206);
28         public Color HANDLE2 = new Color( 92,  92,  92);
29         public Color HANDLE3 = new Color(255, 255, 255);
30         public Color HANDLE4 = new Color(230, 230, 230);
31         public Color HANDLE5 = new Color(206, 206, 206);
32     public Color HANDLE6 = new Color(153, 153, 153);
33         public Color HANDLE7 = new Color(206, 206, 206);
34         public Color HANDLE8 = new Color(255, 255, 255);
35         
36     public Color DISABLED_HANDLE1 = new Color(167, 167, 167);
37         public Color DISABLED_HANDLE2 = new Color(110, 110, 110);
38         public Color DISABLED_HANDLE3 = new Color(192, 192, 192);
39         public Color DISABLED_HANDLE4 = new Color(179, 179, 179);
40         public Color DISABLED_HANDLE5 = new Color(167, 167, 167);
41     public Color DISABLED_HANDLE6 = new Color(140, 140, 140);
42         public Color DISABLED_HANDLE7 = new Color(167, 167, 167);
43         public Color DISABLED_HANDLE8 = new Color(192, 192, 192);
44                 
45         
46 }