Qt Framework

From Personal Wiki

Tool Workarounds

Creator

The Creator IDE still does not implement a style plugin, which, makes improving the contrast of widgets to be more difficult. The scrollbars still could have greater contrast. I've used this stylesheet file, shown below, and passed it to the "-stylesheet" option to creator when launching it:

/* Define a style for the vertical scrollbar */
QScrollBar:vertical {
    background: #3f3f3f; /* Set the background color */
}
/* Define a style for the horizontal scrollbar */
QScrollBar:horizontal {
    background: #3f3f3f; /* Set the background color */
    
}
/* Define a style for the handle (the draggable part) of the scrollbar */
QScrollBar::handle:vertical,
QScrollBar::handle:horizontal {
    background: #999999; /* Set the color of the handle */
    min-height: 20px; /* Set the minimum height of the handle */
}
QLabel::Link, QLabel::LinkVisited {
    color: "white";
}
/* Define a style for the page-up and page-down buttons */
QScrollBar::add-line:vertical,
QScrollBar::sub-line:vertical,
QScrollBar::add-line:horizontal,
QScrollBar::sub-line:horizontal {
    background: #CCCCCC; /* Set the background color */
}
/* Define a style for the page-up and page-down buttons when hovered */
QScrollBar::add-line:vertical:hover,
QScrollBar::sub-line:vertical:hover,
QScrollBar::add-line:horizontal:hover,
QScrollBar::sub-line:horizontal:hover {
    background: #999999; /* Set the background color when hovered */
}
/* Define a style for the arrows of the page-up and page-down buttons */
QScrollBar::up-arrow:vertical,
QScrollBar::down-arrow:vertical,
QScrollBar::up-arrow:horizontal,
QScrollBar::down-arrow:horizontal {
    background: #999999; /* Set the color of the arrow */
}
/* Define a style for the arrows of the page-up and page-down buttons when hovered */
QScrollBar::up-arrow:vertical:hover,
QScrollBar::down-arrow:vertical:hover,
QScrollBar::up-arrow:horizontal:hover,
QScrollBar::down-arrow:horizontal:hover {
    background: #CCCCCC; /* Set the background color of the arrow when hovered */
}