For example: ``` [ a [ color (hex "#000000") , hover [ color (hex "#111111") ] , active [ color (hex "#222222") ] , disabled [ color (hex "#333333") ] ] ] ``` Results in: ``` a { color: #000000 } a:hover { color: #111111 } a:hover:active { color: #222222 } a:hover:active:disabled { color: #333333 } ```