Let’s say if you want to change the default primary button color as shown above then we need to override _theme.less file in the app/design/frontend/Mage/Monkey/web/css/source directory and put below code
/* Primary button */ @button-primary__background: #000; @button-primary__border: 1px solid #000; @button-primary__color: #fff; @button-primary__hover__background: #fff; @button-primary__hover__border: 1px solid #fff; @button-primary__hover__color: #000;
Hope applying the above code will help you to change colors as per your requirements.