Bing Chat Dark Mode

Bing Chat dark mode! Auto align Bing Chat to center!

< Обсуждения Bing Chat Dark Mode

Отзыв: Нормальный — скрипт работает, но имеет существенные недостатки

Input Box (.main-container) transparent issues

Script works, but the text input box (.main-container) is transparent for some reason. This make long texts weird, for more example see my attachment below :

Known issues

Chat input box transparent

Known fix

Add the code below, exactly before the line 38 :
delay();

Here you go :

function changeTransparentBox(){
if (document.querySelector("#b_sydConvCont > cib-serp")) {
document.querySelector("#b_sydConvCont > cib-serp").shadowRoot.querySelector("#cib-action-bar-main").style.setProperty('--cib-color-neutral-input-inverted', 'rgba(32, 32, 32, 1)');
} else {
setTimeout(changeTransparentBox, 100);
}
}
changeTransparentBox();


You can also modify the rgba(32, 32, 32 part to any color you want, for example : rgba(80, 80, 80

thanks so much for the fix. Works great! Hope it could be updated in the code by the creator.

Ответить

Войдите, чтобы ответить.