Package breitband.GUI.util
Class Styles
- java.lang.Object
 - 
- breitband.GUI.util.Styles
 
 
- 
public class Styles extends java.lang.ObjectAll styles that the GUI uses. Contains font styles and colors.- Author:
 - Luna Otte
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFONT_FAMILYThe font family used by all UI textstatic floatFONT_SIZE_BASEBase font size.static floatFONT_SIZE_LARGELarge font size.static floatFONT_SIZE_SMALLSmall font size.static floatFONT_SIZE_TINYTiny font sizestatic java.awt.Color[]paletteThe color palette used to color in regions.static java.awt.ColorSURFACE_100Main UI blue-gray color; Shade 100.static java.awt.ColorSURFACE_200Main UI blue-gray color; Shade 200static java.awt.ColorSURFACE_300Main UI blue-gray color; Shade 300static java.awt.ColorSURFACE_400Main UI blue-gray color; Shade 400.static java.awt.ColorSURFACE_50Main UI blue-gray color; Shade 50static java.awt.ColorSURFACE_500Main UI blue-gray color; Shade 500static java.awt.ColorSURFACE_600Main UI blue-gray color; Shade 600static java.awt.ColorSURFACE_700Main UI blue-gray color; Shade 700static java.awt.ColorSURFACE_800Main UI blue-gray color; Shade 800.static java.awt.ColorSURFACE_900Main UI blue-gray color; Shade 900.static java.awt.ColorSURFACE_950Main UI blue-gray color; Shade 950. 
- 
Constructor Summary
Constructors Constructor Description Styles() 
 - 
 
- 
- 
Field Detail
- 
palette
public static final java.awt.Color[] palette
The color palette used to color in regions. 
- 
SURFACE_50
public static java.awt.Color SURFACE_50
Main UI blue-gray color; Shade 50 
- 
SURFACE_100
public static java.awt.Color SURFACE_100
Main UI blue-gray color; Shade 100. Use this for main text 
- 
SURFACE_200
public static java.awt.Color SURFACE_200
Main UI blue-gray color; Shade 200 
- 
SURFACE_300
public static java.awt.Color SURFACE_300
Main UI blue-gray color; Shade 300 
- 
SURFACE_400
public static java.awt.Color SURFACE_400
Main UI blue-gray color; Shade 400. Use this for muted text 
- 
SURFACE_500
public static java.awt.Color SURFACE_500
Main UI blue-gray color; Shade 500 
- 
SURFACE_600
public static java.awt.Color SURFACE_600
Main UI blue-gray color; Shade 600 
- 
SURFACE_700
public static java.awt.Color SURFACE_700
Main UI blue-gray color; Shade 700 
- 
SURFACE_800
public static java.awt.Color SURFACE_800
Main UI blue-gray color; Shade 800. Use this for elevated backgrounds 
- 
SURFACE_900
public static java.awt.Color SURFACE_900
Main UI blue-gray color; Shade 900. Use this for elevated backgrounds 
- 
SURFACE_950
public static java.awt.Color SURFACE_950
Main UI blue-gray color; Shade 950. Use this for main backgrounds 
- 
FONT_FAMILY
public static java.lang.String FONT_FAMILY
The font family used by all UI text 
- 
FONT_SIZE_TINY
public static final float FONT_SIZE_TINY
Tiny font size- See Also:
 - Constant Field Values
 
 
- 
FONT_SIZE_SMALL
public static final float FONT_SIZE_SMALL
Small font size. Use this for subtext.- See Also:
 - Constant Field Values
 
 
- 
FONT_SIZE_BASE
public static final float FONT_SIZE_BASE
Base font size. Most of the time, you'll want this.- See Also:
 - Constant Field Values
 
 
- 
FONT_SIZE_LARGE
public static final float FONT_SIZE_LARGE
Large font size.Use this for titles, important information, or in contexts where compact information density is not required.
- See Also:
 - Constant Field Values
 
 
 - 
 
 -