Set CSS for background, text and and hovering color.
import { bgColorInt } from 'gadjet/dist/module/style/bg-color-int.js';
bgColorInt({
color?: string = 'blue',
lighten?: number = 0.2, // Can be -1 to 1
saturate?: number = 0.2 // Can be -1 to 1
}) => string;
color?: string = 'blue'
lighten?: number = 0.2
saturate?: number = 0.2
import { addStyle, bgColorInt } from 'gadjet';
addStyle`
div {
${bgColorInt({
color: 'blue',
lighten: 0.2,
saturate: 0.2
})}
}`;