Making color sketch

It may be used the diagrammeR package to make somthing like card.

Example

The sketch has blue background with green subgraph, diamond shape and big font ** as follows**.

library(DiagrammeR)

grViz("digraph G {bgcolor=blue

    subgraph cluster_1 { bgcolor=green; fontcolor=black
        n5 [style=filled shape='diamond' width=5 height=20 label='Enjoy' fontsize=150 
        fillcolor='deepskyblue:gold']
    }
    
    subgraph cluster_2 { bgcolor=green; fontcolor=black
        n11 [style=filled shape='diamond' width=5 height=15 label='the' fontsize=150 
        fillcolor='snow:black']
    }
    subgraph cluster_3 { bgcolor=green; fontcolor=black
        n14 [style=filled shape='diamond' width=5 height=10 label='little' fontsize=150      fillcolor='crimson:cyan4']
    }
    subgraph cluster_4 { bgcolor=green; fontcolor=white
        n21 [style=filled shape='diamond' width=5 height=5 label='things' fontsize=150 
        fillcolor='green:darkorchid']
    }

}")