如何在 graphviz table 中获得绿色背景上的白色文本?

How do I get white text on green background in a graphviz table?

如何在 graphviz table 标签中获得绿底白字? fontcolor 好像不行...:[=​​13=]

digraph foo {

    id1 [shape=none,label=<
        <table border="1" cellborder="0" cellspacing="3">
            <tr>
                <td bgcolor="green" fontcolor="white">hello</td>
                <td>world</td>
            </tr>
        </table>>];
}

这对我有用:

digraph foo {

id1 [shape=none,label=<
    <table border="1" cellborder="0" cellspacing="3">
        <tr>
            <td bgcolor="green"><font color="white">hello</font></td>
            <td>world</td>
        </tr>
    </table>>];
}