-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCGraphite.java
More file actions
41 lines (36 loc) · 2 KB
/
Copy pathCGraphite.java
File metadata and controls
41 lines (36 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// -*- mode: java; c-basic-offset: 2; -*-
// Copyright 2009-2011 Google, All Rights reserved
// Copyright 2011-2012 MIT, All rights reserved
// Released under the MIT License https://raw.github.com/mit-cml/app-inventor/master/mitlicense.txt
package openblocks.codeblockutil;
import java.awt.Color;
public final class CGraphite {
private CGraphite(){}
public static Color blue = new Color(77,109,243);
public static Color darkgreen = new Color(75,132,9);
public static final Color gray = new Color(180,180,180);
public static final Color darkgray = new Color(70, 70, 70);
public static final Color lightgray = Color.lightGray;
public static final Color verylightgray = new Color(229,229,229);
// colors from Designer
public static final Color medgreen = new Color(164, 198, 57);
public static final Color lightgreen = new Color(210, 224, 166);
public static final Color lightgreen1 = new Color(237, 245, 211);
public static final Color lightergreen = new Color(238, 242, 224);
public static final Color lightestgreen = new Color(247, 249, 242);
public static final Color button_white = Color.white;
public static final Color button_lightgray = new Color(227, 227, 227);
public static final Color button_border = new Color(170, 170, 170);
public static final Color button_hoverborder = new Color(136, 136, 136);
public static final Color button_hovertext = Color.black;
public static final Color button_grayedout = new Color(230, 230, 230);
public static final Color button_textgrayedout = new Color(153, 153, 153);
public static final Color category_border = new Color(210, 210, 210);
public static final Color scrollbar_background = new Color(210, 224, 166, 100);
public static final Color complaint_background = new Color(255, 161, 161);
public static final Color milky = new Color(0,0,0,100);
public static final Color white = new Color(240,240,240);
public static final Color yellow = new Color(253,255,181);
//200-500 isused
private static final long serialVersionUID = 328149080430L;
}