help the tabs text is barely visible : https://postimg.cc/68VPX3Rp
new_tab = QWidget()
new_tab_layout = QVBoxLayout()
new_tab.setLayout(new_tab_layout)
new_tab_layout.addWidget(browser)
self.browser_area.addWidget(new_tab)
self.browser_area.setCurrentWidget(new_tab)
tab_item = QWidget()
tab_layout = QHBoxLayout()
favicon_label = QLabel()
tab_layout.addWidget(favicon_label)
tab_text = QLabel(label)
tab_text.setStyleSheet("color: black; font-size: 14px;line-height: 16px; padding-left: 5px; padding-right: 5px;")
tab_text.setSizePolicy(QSizePolicy.MinimumExpanding, QSizePolicy.Preferred)
tab_layout.addWidget(tab_text, alignment=Qt.AlignLeft | Qt.AlignVCenter)
tab_item.setLayout(tab_layout)
item = QListWidgetItem()
item.setSizeHint(tab_item.sizeHint())
self.tabs_list.addItem(item)
self.tabs_list.setItemWidget(item, tab_item)
self.tabs_list.setCurrentRow(i)