home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / unuy2wen / cybcerone / utils / fonts.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  462 b   |  22 lines

  1. // Fonts.java
  2. // 29.03.96
  3. //
  4. // all of the fonts used in Cybcerone
  5.  
  6. package cybcerone.utils;
  7.  
  8. import java.awt.Font;
  9.  
  10. /**
  11.  * The common fonts used throughout Cybcerone.
  12.  */
  13. public class Fonts {
  14.   public static Font bigFont = 
  15.     new Font ("Dialog", Font.PLAIN, Scaler.scale (18));
  16.   public static Font smallFont = 
  17.     new Font ("Dialog", Font.BOLD, Scaler.scale (16));
  18.   public static Font tinyFont = 
  19.     new Font ("Dialog", Font.PLAIN, Scaler.scale (14));
  20.  
  21. }
  22.