Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/bdgp/apps/dagedit/gui/Preferences.java


1   package org.bdgp.apps.dagedit.gui;
2   
3   import java.awt.*;
4   
5   public class Preferences {
6   
7       private static final Font DEFAULT_FONT = new Font("Courier", 0, 16);
8       private static final Color DEFAULT_BG_COLOR = new Color(216,223,230);
9       private static final Color DEFAULT_BUTTON_COLOR = new Color(100,149,237);
10  
11      public static Font defaultFont() {
12    return DEFAULT_FONT;
13      }
14  
15      public static Color defaultBackgroundColor() {
16    return DEFAULT_BG_COLOR;
17      }
18  
19      public static Color defaultButtonColor() {
20    return DEFAULT_BUTTON_COLOR;
21      }
22  
23  }