Dim makes the cell foreground color dim. Only works when using the tcell backend.
()
| 114 | |
| 115 | // Dim makes the cell foreground color dim. Only works when using the tcell backend. |
| 116 | func Dim() Option { |
| 117 | return option(func(co *Options) { |
| 118 | co.Dim = true |
| 119 | }) |
| 120 | } |