button:enabled {
    border: 1px solid #777;
    background: yellowgreen;
}
button:disabled {
    border: 1px solid gray;
    background: silver;
    opacity: 0.7;
}
<button>활성화 상태인 버튼</button>
<button disabled>비활성화된 버튼</button>
실제 적용된 모습
:enabled {
    /* ... */
}