rpcs3/bin/GuiConfigs/Classic (Bright).qss
Megamouse cd1d6282b4
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux-aarch64.sh, gcc, rpcs3/rpcs3-ci-jammy-aarch64:1.9, ubuntu-24.04-arm) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux.sh, gcc, rpcs3/rpcs3-ci-jammy:1.9, ubuntu-24.04) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (a1d35836e8d45bfc6f63c26f0a3e5d46ef622fe1, rpcs3/rpcs3-binaries-linux-arm64, /rpcs3/.ci/build-linux-aarch64.sh, clang, rpcs3/rpcs3-ci-jammy-aarch64:1.9, ubuntu-24.04-arm) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (d812f1254a1157c80fd402f94446310560f54e5f, rpcs3/rpcs3-binaries-linux, /rpcs3/.ci/build-linux.sh, clang, rpcs3/rpcs3-ci-jammy:1.9, ubuntu-24.04) (push) Waiting to run
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (0, 51ae32f468089a8169aaf1567de355ff4a3e0842, rpcs3/rpcs3-binaries-mac, Intel) (push) Waiting to run
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (1, 8e21bdbc40711a3fccd18fbf17b742348b0f4281, rpcs3/rpcs3-binaries-mac-arm64, Apple Silicon) (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
Build RPCS3 / RPCS3 Windows Clang ${{ matrix.arch }} (aarch64, clang, clangarm64, ARM64, windows-11-arm) (push) Waiting to run
Build RPCS3 / RPCS3 Windows Clang ${{ matrix.arch }} (x86_64, clang, clang64, X64, windows-2025) (push) Waiting to run
Build RPCS3 / RPCS3 FreeBSD (push) Waiting to run
Qt: Remove some unused code
2026-03-21 16:10:26 +01:00

161 lines
3.1 KiB
Text

/*
Classic Bright Theme for RPCS3
by Megamouse @ https://github.com/Megamouse
*/
/* toolbar color stylesheet */
QLineEdit#mw_searchbar {
margin-left:14px;
background-color:rgba(227,227,227,255);
}
QToolBar#mw_toolbar {
background-color:rgba(227,227,227,255);
}
QToolBar#mw_toolbar QSlider {
background-color:rgba(227,227,227,255);
}
QToolBar#mw_toolbar::separator {
background-color:rgba(207,207,207,255);
width:1px;
margin-top:2px;
margin-bottom: 2px;
}
QToolButton:disabled {
color: #787878;
}
QSlider#sizeSlider::groove:horizontal {
border: 0em solid transparent;
height: .3em;
background: #fff;
}
QSlider#sizeSlider::handle:horizontal {
width: 1em;
margin: -.8em 0;
}
/* toolbar icon color stylesheet */
QLabel#toolbar_icon_color {
color: rgba(64,64,64,255);
}
/* gamelist icon color stylesheet */
QLabel#gamelist_icon_background_color {
color: rgba(209,209,209,255);
}
/* log stylesheet */
QPlainTextEdit#tty_frame {
background-color:#ffffff;
}
QLabel#tty_text {
color:#000000;
}
QPlainTextEdit#log_frame {
background-color:#ffffff;
}
QLabel#log_level_always {
color:#107896;
}
QLabel#log_level_fatal {
color:#ff00ff;
}
QLabel#log_level_error {
color:#C02F1D;
}
QLabel#log_level_todo {
color:#ff6000;
}
QLabel#log_level_success {
color:#008000;
}
QLabel#log_level_warning {
color:#BA8745;
}
QLabel#log_level_notice {
color:#000000;
}
QLabel#log_level_trace {
color:#808080;
}
QLabel#log_stack {
color: #000000;
}
/* other objects' stylesheet */
QWidget#header_section {
background-color:#ffffff;
}
QDialog#kernel_explorer {
background-color:rgba(240,240,240,255);
}
QDialog#memory_viewer {
background-color:rgba(240,240,240,255);
}
QLabel#memory_viewer_address_panel {
color:rgba(75,135,150,255);
background-color:rgba(240,240,240,255);
}
QLabel#memory_viewer_hex_panel {
color:#000000;
background-color:rgba(240,240,240,255);
}
QLabel#memory_viewer_ascii_panel {
color:#000000;
background-color:rgba(240,240,240,255);
}
QLabel#debugger_frame_breakpoint {
color:#000000;
background-color:#ffff00;
}
QLabel#debugger_frame_pc {
color:#000000;
background-color:#00ff00;
}
QLabel#rsx_debugger_display_buffer {
background-color:rgba(240,240,240,255);
}
QLabel#l_controller {
color:#434343;
}
/* Game Grid */
#game_list_grid_item[selected="true"] {
background: #0078D7;
}
#game_list_grid_item:hover {
background: #008cff;
}
#game_list_grid_item:focus {
background: #0078D7;
}
/* Game Grid Font */
#game_list_grid_item #game_list_grid_item_title_label {
font-weight: 600;
font-size: 8pt;
font-family: Lucida Grande;
color: rgba(51,51,51,255);
}
/* Game Grid hover and focus: we need to handle properties differently when using descendants */
#game_list_grid_item[selected="true"] #game_list_grid_item_title_label {
color: #fff;
}
#game_list_grid_item[hover="true"] #game_list_grid_item_title_label {
color: #fff;
}
#game_list_grid_item[focus="true"] #game_list_grid_item_title_label {
color: #fff;
}
/* Top menu bar (Workaround for transparent menus in Qt 6.7.3) */
QMenu {
color: #000;
background-color: #F0F0F0;
alternate-background-color: #f2f2f2;
}
QMenu::item:selected {
background: #90C8F6;
}
QMenu::item:disabled {
color: #787878;
}