style.go 161 B

1234567891011
  1. package ultraviolet
  2. const CURSOR_POINTER = 1
  3. type View struct {
  4. Block Block
  5. Background Background
  6. Font Font
  7. Cursor int
  8. Custom string
  9. }