Color stores hex and rgb value of color
| 65 | |
| 66 | // Color stores hex and rgb value of color |
| 67 | type Color interface { |
| 68 | Hex() string |
| 69 | RGB() string |
| 70 | TerminalRGB() string |
| 71 | } |
| 72 | |
| 73 | // ParseColor parses a string in both hex or rgb |
| 74 | // or from XResources or env variable |
no outgoing calls
no test coverage detected