style_font.go 230 B

12345678910111213
  1. package ultraviolet
  2. const DECORATION_UNDERLINE = 1
  3. type Font struct {
  4. Face string
  5. Size int
  6. Bold bool
  7. Italic bool
  8. Decoration int
  9. FontColor Color
  10. BackgroundColor Color
  11. }