Inverse inverts the colors of the cell's text.
()
| 100 | |
| 101 | // Inverse inverts the colors of the cell's text. |
| 102 | func Inverse() Option { |
| 103 | return option(func(co *Options) { |
| 104 | co.Inverse = true |
| 105 | }) |
| 106 | } |
| 107 | |
| 108 | // Blink makes the cell's text blink. Only works when using the tcell backend. |
| 109 | func Blink() Option { |