├── .gitignore ├── LICENSE ├── PyQt5_stylesheets ├── .gitignore ├── DarkOrange_rc │ ├── checkbox.png │ ├── down_arrow.png │ └── handle.png ├── Dark_rc │ ├── Hmovetoolbar.png │ ├── Hsepartoolbar.png │ ├── Vmovetoolbar.png │ ├── Vsepartoolbar.png │ ├── branch_closed-on.png │ ├── branch_closed.png │ ├── branch_open-on.png │ ├── branch_open.png │ ├── checkbox_checked.png │ ├── checkbox_checked_disabled.png │ ├── checkbox_checked_focus.png │ ├── checkbox_indeterminate.png │ ├── checkbox_indeterminate_disabled.png │ ├── checkbox_indeterminate_focus.png │ ├── checkbox_unchecked.png │ ├── checkbox_unchecked_disabled.png │ ├── checkbox_unchecked_focus.png │ ├── close-hover.png │ ├── close-pressed.png │ ├── close.png │ ├── down_arrow.png │ ├── down_arrow_disabled.png │ ├── left_arrow.png │ ├── left_arrow_disabled.png │ ├── radio_checked.png │ ├── radio_checked_disabled.png │ ├── radio_checked_focus.png │ ├── radio_unchecked.png │ ├── radio_unchecked_disabled.png │ ├── radio_unchecked_focus.png │ ├── right_arrow.png │ ├── right_arrow_disabled.png │ ├── sizegrip.png │ ├── stylesheet-branch-end.png │ ├── stylesheet-branch-more.png │ ├── stylesheet-vline.png │ ├── transparent.png │ ├── undock.png │ ├── up_arrow.png │ └── up_arrow_disabled.png ├── __init__.py ├── compile_qrc.py ├── img_rc │ ├── add-line_horizontal.png │ ├── add-line_vertical.png │ ├── array_down.png │ ├── checkbox_checked.png │ ├── checkbox_unchecked.png │ ├── radio_normal.png │ ├── radio_selected.png │ ├── sub-line_horizontal.png │ └── sub-line_vertical.png ├── pyqt5_style_Classic_rc.py ├── pyqt5_style_DarkOrange_rc.py ├── pyqt5_style_Dark_rc.py ├── pyqt5_style_black_rc.py ├── pyqt5_style_blue_rc.py ├── pyqt5_style_gray_rc.py ├── pyqt5_style_navy_rc.py ├── style_Classic.qrc ├── style_Classic.qss ├── style_Dark.qrc ├── style_Dark.qss ├── style_DarkOrange.qrc ├── style_DarkOrange.qss ├── style_black.css ├── style_black.qrc ├── style_blue.css ├── style_blue.qrc ├── style_gray.css ├── style_gray.qrc ├── style_navy.css └── style_navy.qrc ├── README.md ├── example ├── example_pyqt.py ├── example_pyqt5.py ├── example_pyside.py └── ui │ ├── __init__.py │ ├── compile_ui.sh │ ├── example.py │ ├── example.ui │ ├── example_pyqt5_ui.py │ ├── example_pyqt_ui.py │ └── example_pyside_ui.py ├── screenshots ├── example.png ├── example1.png ├── example2.png ├── example3.png ├── example4.png └── example5.png ├── setup.py └── svg ├── checkbox_checked.svg ├── checkbox_checked_disabled.svg ├── checkbox_checked_focus.svg ├── checkbox_indeterminate.svg ├── checkbox_indeterminate_disabled.svg ├── checkbox_indeterminate_focus.svg ├── checkbox_unchecked.svg ├── checkbox_unchecked_disabled.svg ├── checkbox_unchecked_focus.svg ├── radio_checked.svg ├── radio_checked_disabled.svg ├── radio_checked_focus.svg ├── radio_unchecked.svg ├── radio_unchecked_disabled.svg └── radio_unchecked_focus.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/LICENSE -------------------------------------------------------------------------------- /PyQt5_stylesheets/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | -------------------------------------------------------------------------------- /PyQt5_stylesheets/DarkOrange_rc/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/DarkOrange_rc/checkbox.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/DarkOrange_rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/DarkOrange_rc/down_arrow.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/DarkOrange_rc/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/DarkOrange_rc/handle.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/branch_closed-on.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/branch_closed.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/branch_open-on.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/branch_open.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_checked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_checked_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_checked_focus.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_indeterminate.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_indeterminate_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_indeterminate_focus.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/checkbox_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/checkbox_unchecked_focus.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/close-hover.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/close-pressed.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/close.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/down_arrow.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/left_arrow.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_checked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_checked_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_checked_focus.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_unchecked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_unchecked_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/radio_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/radio_unchecked_focus.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/right_arrow.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/sizegrip.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/stylesheet-vline.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/transparent.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/undock.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/up_arrow.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/Dark_rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/Dark_rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/__init__.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/compile_qrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/compile_qrc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/add-line_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/add-line_horizontal.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/add-line_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/add-line_vertical.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/array_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/array_down.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/checkbox_checked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/radio_normal.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/radio_selected.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/sub-line_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/sub-line_horizontal.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/img_rc/sub-line_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/img_rc/sub-line_vertical.png -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_Classic_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_Classic_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_DarkOrange_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_DarkOrange_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_Dark_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_Dark_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_black_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_black_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_blue_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_blue_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_gray_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_gray_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/pyqt5_style_navy_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/pyqt5_style_navy_rc.py -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_Classic.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_Classic.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_Classic.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_Classic.qss -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_Dark.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_Dark.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_Dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_Dark.qss -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_DarkOrange.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_DarkOrange.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_DarkOrange.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_DarkOrange.qss -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_black.css -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_black.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_black.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_blue.css -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_blue.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_blue.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_gray.css -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_gray.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_gray.qrc -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_navy.css -------------------------------------------------------------------------------- /PyQt5_stylesheets/style_navy.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/PyQt5_stylesheets/style_navy.qrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/README.md -------------------------------------------------------------------------------- /example/example_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/example_pyqt.py -------------------------------------------------------------------------------- /example/example_pyqt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/example_pyqt5.py -------------------------------------------------------------------------------- /example/example_pyside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/example_pyside.py -------------------------------------------------------------------------------- /example/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/__init__.py -------------------------------------------------------------------------------- /example/ui/compile_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/compile_ui.sh -------------------------------------------------------------------------------- /example/ui/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/example.py -------------------------------------------------------------------------------- /example/ui/example.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/example.ui -------------------------------------------------------------------------------- /example/ui/example_pyqt5_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/example_pyqt5_ui.py -------------------------------------------------------------------------------- /example/ui/example_pyqt_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/example_pyqt_ui.py -------------------------------------------------------------------------------- /example/ui/example_pyside_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/example/ui/example_pyside_ui.py -------------------------------------------------------------------------------- /screenshots/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example.png -------------------------------------------------------------------------------- /screenshots/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example1.png -------------------------------------------------------------------------------- /screenshots/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example2.png -------------------------------------------------------------------------------- /screenshots/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example3.png -------------------------------------------------------------------------------- /screenshots/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example4.png -------------------------------------------------------------------------------- /screenshots/example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/screenshots/example5.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/setup.py -------------------------------------------------------------------------------- /svg/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_checked.svg -------------------------------------------------------------------------------- /svg/checkbox_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_checked_disabled.svg -------------------------------------------------------------------------------- /svg/checkbox_checked_focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_checked_focus.svg -------------------------------------------------------------------------------- /svg/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /svg/checkbox_indeterminate_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_indeterminate_disabled.svg -------------------------------------------------------------------------------- /svg/checkbox_indeterminate_focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_indeterminate_focus.svg -------------------------------------------------------------------------------- /svg/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_unchecked.svg -------------------------------------------------------------------------------- /svg/checkbox_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_unchecked_disabled.svg -------------------------------------------------------------------------------- /svg/checkbox_unchecked_focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/checkbox_unchecked_focus.svg -------------------------------------------------------------------------------- /svg/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_checked.svg -------------------------------------------------------------------------------- /svg/radio_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_checked_disabled.svg -------------------------------------------------------------------------------- /svg/radio_checked_focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_checked_focus.svg -------------------------------------------------------------------------------- /svg/radio_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_unchecked.svg -------------------------------------------------------------------------------- /svg/radio_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_unchecked_disabled.svg -------------------------------------------------------------------------------- /svg/radio_unchecked_focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedFalsh/PyQt5_stylesheets/HEAD/svg/radio_unchecked_focus.svg --------------------------------------------------------------------------------