printableFg property

  1. @override
String get printableFg
override

Returns a human-readable string representation of the foreground color.

For dimmed colors, appends "(d)" to the color name.

Implementation

@override
String get printableFg => _dim ? '$name(d)' : name;