* Converts a color to RGB color space and returns an object. * Always includes an alpha value from 0 to 1.
()
| 70 | * Always includes an alpha value from 0 to 1. |
| 71 | */ |
| 72 | public toRgb(): RgbaColor { |
| 73 | return roundRgba(this.rgba); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Converts a color to RGB color space and returns a string representation. |
no test coverage detected