Hey!
Is there a way for me to change the colors of the Wizard Stepper?
I figured out that I can write css in my component that will override the css on the buttons, but I cannot figure out how to change the colors on the stepper. I'm terrible at css and am actually begining to work with Tailwind.
Used this to override the button:
.k-button-solid-primary {background-color: rgb(8 145 178);
color: white;
border-color: rgb(8 145 178);
}
.k-button-solid-primary:hover {
background-color: rgb(165 243 252);
color: white;
border-color: rgb(165 243 252);
}