wenzheng.yang
2023-06-19 8d3a46d346ef028acc16e267fe5c812c76a754e5
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package publicclass;
 
import java.awt.Color;
 
/**±¾ÀàÓÃÓÚ¹ÜÀíÑÕÉ«*/
public class UIColor {
    //ÄÚ²¿´°Ìå±ß¿ò
    static Color jinerFrame=new Color(255,255,255,100);
    
    //±í¸ñ±±²¿Ãæ°åÑÕÉ«
    static Color jpnorth=new Color(238,238,238,255);
    
    //±±²¿Ãæ°åÑÕÉ«
    static Color North_color=new Color(250,250,210,255);
    
    //±í¸ñÑÕÉ«
    static Color table_color=new Color(0,0,139,0);
    
    //Öв¿Ãæ°åÑÕÉ«
    static Color center_color=new Color(178,34,34,90);
    
    //Äϲ¿Ãæ°åÑÕÉ«
    static Color south_color=new Color(178,34,34,90);
    
    //°´¼ü±³¾°ÑÕÉ«
    static Color button_color=new Color(30,144,255,255);
    
    //°´¼üÎÄ×ÖÑÕÉ«
    static Color button_font=new Color(255,255,255,255);
    
    //Õ¤À¸Ð§¹ûµÄÆæÊýÐÐÑÕÉ«
    static Color table_1=new Color(255,255,224,255);
    
    //Õ¤À¸Ð§¹ûżÊýÐÐÑÕÉ«
    static Color table_2=new Color(250,250,210,255);
    
    //±í¸ñÄÚ²¿µÄÎÄ×ÖÑÕÉ«ÂÌÉ«
    
    static Color table_font=new Color(46,139,87,255);
    
    //table±»Ñ¡ÖÐÐеÄÑÕÉ«
    static Color table_sekected=new Color(222,184,135,255);
    
    //À¶É«
    static Color blues=new  Color(30,144,255,255);
    
    //É­ÁÖÂÌÉ«
    static Color grenn=new Color(34,139,34,255);
    
    //menuBarÑÕÉ«
    static Color menuBarcolor=new Color(30,144,255,255);
 
    public static  Color getNorth_color() {
        return North_color;
    }
 
    public static Color getTable_color() {
        return table_color;
    }
 
    public static Color getCenter_color() {
        return center_color;
    }
 
    public static  Color getSouth_color() {
        return south_color;
    }
 
    public static  Color getButton_color() {
        return button_color;
    }
 
    public static Color getJinerFrame() {
        return jinerFrame;
    }
 
    public static Color getButton_font() {
        return button_font;
    }
 
    public static Color getTable_1() {
        return table_1;
    }
 
    public static Color getTable_2() {
        return table_2;
    }
 
    public static Color getTable_font() {
        return table_font;
    }
 
    public static Color getBlues() {
        return blues;
    }
 
    public static Color getMenuBarcolor() {
        return menuBarcolor;
    }
 
    public static Color getGrenn() {
        return grenn;
    }
 
    /**É­ÁÖÂÌÉ«*/
    public static void setGrenn(Color grenn) {
        UIColor.grenn = grenn;
    }
 
    public static Color getJpnorth() {
        return jpnorth;
    }
 
    public static Color getTable_sekected() {
        return table_sekected;
    }
 
}