Although there isn't a syntax to directly specify background colors for individual table cells, you can re-purpose the table header syntax -- "!" -- to accomplish something similar:
<style> .mytable th { background:lightblue; } </style>
|mytable|k
|!foo|bar|
|mumble|frotz|
The "foo" cell in the above example will have a lightblue background.
enjoy,
-e