I'm generating themes dynamically with PostCSS. Sometimes I have to use a transparent color to hide some part e.g. border ```css border-color: color-mod($border shade(10%)); // resolved to: border-color: color-mod(transparent shade(10%)); ``` but it fails inside the `code-mod` with the following error: ``` Module build failed: Syntax Error (11:29) Expected a color ```