Background color with proper text color (black or white);
import { bgColor } from 'gadjet/dist/module/style/bg-color.js';
bgColor(color: string = 'blue') => string;
color: string = 'blue'
import { addStyle, bgColor } from 'gadjet';
addStyle`
div {
${bgColor('blue')}
}`;