Daniel@0: digraph G { Daniel@0: xyz [label = "hello\nworld",color="slateblue",fontsize=24,fontname="Palatino-Italic",style=filled,fontcolor="hotpink"]; Daniel@0: node [style=filled]; Daniel@0: red [color=red]; Daniel@0: green [color=green]; Daniel@0: blue [color=blue,fontcolor=black]; Daniel@0: cyan [color=cyan]; Daniel@0: magenta [color=magenta]; Daniel@0: yellow [color=yellow]; Daniel@0: orange [color=orange]; Daniel@0: red -> green; Daniel@0: red -> blue; Daniel@0: blue -> cyan; Daniel@0: blue -> magenta; Daniel@0: green -> yellow; Daniel@0: green -> orange; Daniel@0: }