I am using this library for applying colors on strings printed.
I can use simple standard colors as:
color.New(color.FgBlue)
Is it possible to use my custom colors in this library? Example, I have a hexadecimal color - #00FFFF Is it possible to use this with the library?
Fatih's color library does not support RGB colors, only the standard 16 ANSI colors.
True color support varies depending on your terminal emulator. One library I found that supports "truecolor" is https://github.com/wayneashleyberry/truecolor. You can find more information about how it works and a list of supported terminal emulators at https://gist.github.com/XVilka/8346728.