但是暗色 黑成一片,所有界線不清,黑矇矇 看不清楚。
明色底的白色,光線太亮,相當刺眼。
是否有擴充功能,能把白色底變成淺灰色?
(或是把黑色底,【黑色】變成【深灰】,亮一點?)


pc1200 wrote:是否有擴充功能,能把白色底變成淺灰色?
(function() {
'use strict';
const newColor = '#db2121';
document.querySelector('.c-articleLimit').style.color = newColor;
const elementsToChange = document.querySelectorAll('.c-articleLimit');
elementsToChange.forEach((element) => {
element.style.color = newColor;
});
})();