mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
Added white and gray to colors list.
This commit is contained in:
@@ -9,6 +9,11 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var Colors map[string]Color = map[string]Color{
|
||||||
|
"Gray": &RGB{128, 128, 128},
|
||||||
|
"White": &RGB{255, 255, 255},
|
||||||
|
}
|
||||||
|
|
||||||
// Color represents a color.
|
// Color represents a color.
|
||||||
type Color interface {
|
type Color interface {
|
||||||
RGB() [3]int
|
RGB() [3]int
|
||||||
|
|||||||
Reference in New Issue
Block a user