()
| 124 | } |
| 125 | |
| 126 | func (t *Theme) CursorForeground() color.Color { |
| 127 | c, ok := t.colourMap[ColourCursorForeground] |
| 128 | if !ok { |
| 129 | return color.RGBA{0, 0, 0, 0xff} |
| 130 | } |
| 131 | return c |
| 132 | } |
| 133 | |
| 134 | func (t *Theme) ColourFrom8Bit(n string) (color.Color, error) { |
| 135 |