Tema kişiselleştirme de Google Chrome Tabs Rengini değiştiremiyorum. kodlarda bir hata var sanırım.
Tema ana rengi checkbox ile seçilince tabs rengide değişecek.
teklide yaptım ama birkaç renk işin içine girince olan oldu.
Local Storage kullanarak rengi bellekte kullanıyorum. kodlarım.
Gri
Siyah
<script>
$(document).ready(function() {
var themeColor;
var ckbox2 = $('#option2');
var ckbox3 = $('#option3');
var ckbox4 = $('#option4');
var ckbox5 = $('#option5');
var ckbox6 = $('#option6');
var ckbox7 = $('#option7');
var ckbox8 = $('#option8');
$('input[type=checkbox]').on('click', function() {
if (ckbox2.is( ":checked" )) {
themeColor = '#f44336'
} else if (ckbox3.is( ":checked" )) {
themeColor = '#4caf50';
} else if (ckbox4.is( ":checked" )) {
themeColor = '#e91e63';
} else if (ckbox5.is( ":checked" )) {
themeColor = '#ff9800';
} else if (ckbox6.is( ":checked" )) {
themeColor = '#ffeb3b';
} else if (ckbox7.is( ":checked" )) {
themeColor = '#9e9e9e';
} else if (ckbox8.is( ":checked" )) {
themeColor = '#000000';
} else {
themeColor = '#2196f3';
}
//remove the current meta
$('meta[name=theme-color]').remove();
//add the new one
$('head').append('');
});
});
</script>