Version: 39 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643689 "systemctl dot" produces a dot diagram which uses the color "darkgrey"; however, dot does not recognize the color "darkgrey", so it produces a warning: Warning: darkgrey is not a known color.
Hmm, is there any color we can use instead? Maybe dot knows "darkgray" instead of "darkgrey"?
The dot man page says: A colorvalue may be "h,s,v" (hue, saturation, brightness) floating point numbers between 0 and 1, or an X11 color name such as white black red green blue yellow magenta cyan or burlywood, or a "#rrggbb" (red, green, blue, 2 hex characters each) value. So maybe use "gray" or the #rrggbb notation?
darkgrey is an X11 color, so we are perfectly in line with the man page here. $ grep -i darkgr /usr/share/X11/rgb.txt 0 100 0 DarkGreen 169 169 169 DarkGrey 169 169 169 DarkGray Is that different on Debian?
(In reply to comment #3) > darkgrey is an X11 color, so we are perfectly in line with the man page here. > > $ grep -i darkgr /usr/share/X11/rgb.txt > 0 100 0 DarkGreen > 169 169 169 DarkGrey > 169 169 169 DarkGray > > Is that different on Debian? I get the same output on Debian.
Then this sounds like a bug in dot, no?
Right, graphviz has ./cmd/tools/colortbl.h with colornames, and darkgrey is not in it. Debian has graphviz 2.26, and Fedora 2.28, so maybe it's enough to wait for Debian to package the new version. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645410
Fixed in 81cf1c43c9a.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.