<button type="button">Активная</button>
<button type="button" disabled>Не активная</button>
<button type="button" id="button1">Будет неактивная после выполнения скрипта</button>
const button = document.getElementById('button1');
button.setAttribute('disabled', 'disabled');
button:disabled {
/* стили */
}