home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 462 b | 22 lines |
- // Fonts.java
- // 29.03.96
- //
- // all of the fonts used in Cybcerone
-
- package cybcerone.utils;
-
- import java.awt.Font;
-
- /**
- * The common fonts used throughout Cybcerone.
- */
- public class Fonts {
- public static Font bigFont =
- new Font ("Dialog", Font.PLAIN, Scaler.scale (18));
- public static Font smallFont =
- new Font ("Dialog", Font.BOLD, Scaler.scale (16));
- public static Font tinyFont =
- new Font ("Dialog", Font.PLAIN, Scaler.scale (14));
-
- }
-