Similar to how Tailwind does border-l and border-blue-200, how could I do this with a custom utility class? Eg. custom custom-blue-200.
At the moment I have a utility class defined like this:
@layer utilities {
.corner-cut {
background-image: linear-gradient(315deg, transparent 10px, rgba(255, 255, 255, 0.9) 10px);
}
}
This has been working fine, but now I need to combine these with a color parameter in order to make the rgb part of the gradient not hard-coded to one color.