style_font.go 234 B

1234567891011121314
  1. package ultraviolet
  2. const DECORATION_UNDERLINE = 1
  3. type Font struct {
  4. Family string
  5. Size int
  6. Uppercase bool
  7. Bold bool
  8. Italic bool
  9. Decoration int
  10. LetterSpacing int
  11. Color Color
  12. }