├── CloseWindow.py ├── Titlebar.py ├── WindowWithTitleBar.py ├── __init__.py ├── beautifyUi ├── blue │ ├── checkbox_down.png │ ├── checkbox_hoverCheck.png │ ├── checkbox_hoverUncheck.png │ ├── checkbox_normal.png │ ├── close.png │ ├── closehover.png │ ├── closepress.png │ ├── down_arrow.png │ ├── minsize.png │ ├── minsizehover.png │ ├── minsizepress.png │ ├── radio_down.png │ ├── radio_hoverCheck.png │ ├── radio_hoverUncheck.png │ ├── radio_normal.png │ ├── resize.png │ ├── resizehover.png │ ├── resizepress.png │ ├── retsize.png │ ├── retsizehover.png │ └── retsizepress.png ├── blueDeep │ ├── checkbox_down.png │ ├── checkbox_hoverCheck.png │ ├── checkbox_hoverUncheck.png │ ├── checkbox_normal.png │ ├── close.png │ ├── closehover.png │ ├── closepress.png │ ├── down_arrow.png │ ├── minsize.png │ ├── minsizehover.png │ ├── minsizepress.png │ ├── radio_down.png │ ├── radio_hoverCheck.png │ ├── radio_hoverUncheck.png │ ├── radio_normal.png │ ├── resize.png │ ├── resizehover.png │ ├── resizepress.png │ ├── retsize.png │ ├── retsizehover.png │ └── retsizepress.png ├── blueGreen │ ├── checkbox_down.png │ ├── checkbox_hoverCheck.png │ ├── checkbox_hoverUncheck.png │ ├── checkbox_normal.png │ ├── close.png │ ├── closehover.png │ ├── closepress.png │ ├── down_arrow.png │ ├── minsize.png │ ├── minsizehover.png │ ├── minsizepress.png │ ├── radio_down.png │ ├── radio_hoverCheck.png │ ├── radio_hoverUncheck.png │ ├── radio_normal.png │ ├── resize.png │ ├── resizehover.png │ ├── resizepress.png │ ├── retsize.png │ ├── retsizehover.png │ └── retsizepress.png ├── default │ ├── checkbox_down.png │ ├── checkbox_hoverCheck.png │ ├── checkbox_hoverUncheck.png │ ├── checkbox_normal.png │ ├── close.png │ ├── closehover.png │ ├── closepress.png │ ├── down_arrow.png │ ├── minsize.png │ ├── minsizehover.png │ ├── minsizepress.png │ ├── radio_down.png │ ├── radio_hoverCheck.png │ ├── radio_hoverUncheck.png │ ├── radio_normal.png │ ├── resize.png │ ├── resizehover.png │ ├── resizepress.png │ ├── retsize.png │ ├── retsizehover.png │ └── retsizepress.png ├── icon.jpg ├── pink │ ├── checkbox_down.png │ ├── checkbox_hoverCheck.png │ ├── checkbox_hoverUncheck.png │ ├── checkbox_normal.png │ ├── close.png │ ├── closehover.png │ ├── closepress.png │ ├── down_arrow.png │ ├── minsize.png │ ├── minsizehover.png │ ├── minsizepress.png │ ├── radio_down.png │ ├── radio_hoverCheck.png │ ├── radio_hoverUncheck.png │ ├── radio_normal.png │ ├── resize.png │ ├── resizehover.png │ ├── resizepress.png │ ├── retsize.png │ ├── retsizehover.png │ └── retsizepress.png └── theme.json ├── cure.py ├── qss_getter.py ├── resourse_cfg.py └── simple_qss.py /CloseWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/CloseWindow.py -------------------------------------------------------------------------------- /Titlebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/Titlebar.py -------------------------------------------------------------------------------- /WindowWithTitleBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/WindowWithTitleBar.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/__init__.py -------------------------------------------------------------------------------- /beautifyUi/blue/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/checkbox_down.png -------------------------------------------------------------------------------- /beautifyUi/blue/checkbox_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/checkbox_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blue/checkbox_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/checkbox_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blue/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/checkbox_normal.png -------------------------------------------------------------------------------- /beautifyUi/blue/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/close.png -------------------------------------------------------------------------------- /beautifyUi/blue/closehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/closehover.png -------------------------------------------------------------------------------- /beautifyUi/blue/closepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/closepress.png -------------------------------------------------------------------------------- /beautifyUi/blue/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/down_arrow.png -------------------------------------------------------------------------------- /beautifyUi/blue/minsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/minsize.png -------------------------------------------------------------------------------- /beautifyUi/blue/minsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/minsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blue/minsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/minsizepress.png -------------------------------------------------------------------------------- /beautifyUi/blue/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/radio_down.png -------------------------------------------------------------------------------- /beautifyUi/blue/radio_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/radio_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blue/radio_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/radio_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blue/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/radio_normal.png -------------------------------------------------------------------------------- /beautifyUi/blue/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/resize.png -------------------------------------------------------------------------------- /beautifyUi/blue/resizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/resizehover.png -------------------------------------------------------------------------------- /beautifyUi/blue/resizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/resizepress.png -------------------------------------------------------------------------------- /beautifyUi/blue/retsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/retsize.png -------------------------------------------------------------------------------- /beautifyUi/blue/retsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/retsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blue/retsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blue/retsizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/checkbox_down.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/checkbox_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/checkbox_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/checkbox_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/checkbox_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/checkbox_normal.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/close.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/closehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/closehover.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/closepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/closepress.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/down_arrow.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/minsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/minsize.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/minsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/minsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/minsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/minsizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/radio_down.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/radio_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/radio_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/radio_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/radio_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/radio_normal.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/resize.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/resizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/resizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/resizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/resizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/retsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/retsize.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/retsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/retsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueDeep/retsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueDeep/retsizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/checkbox_down.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/checkbox_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/checkbox_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/checkbox_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/checkbox_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/checkbox_normal.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/close.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/closehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/closehover.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/closepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/closepress.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/down_arrow.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/minsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/minsize.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/minsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/minsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/minsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/minsizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/radio_down.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/radio_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/radio_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/radio_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/radio_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/radio_normal.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/resize.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/resizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/resizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/resizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/resizepress.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/retsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/retsize.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/retsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/retsizehover.png -------------------------------------------------------------------------------- /beautifyUi/blueGreen/retsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/blueGreen/retsizepress.png -------------------------------------------------------------------------------- /beautifyUi/default/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/checkbox_down.png -------------------------------------------------------------------------------- /beautifyUi/default/checkbox_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/checkbox_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/default/checkbox_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/checkbox_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/default/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/checkbox_normal.png -------------------------------------------------------------------------------- /beautifyUi/default/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/close.png -------------------------------------------------------------------------------- /beautifyUi/default/closehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/closehover.png -------------------------------------------------------------------------------- /beautifyUi/default/closepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/closepress.png -------------------------------------------------------------------------------- /beautifyUi/default/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/down_arrow.png -------------------------------------------------------------------------------- /beautifyUi/default/minsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/minsize.png -------------------------------------------------------------------------------- /beautifyUi/default/minsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/minsizehover.png -------------------------------------------------------------------------------- /beautifyUi/default/minsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/minsizepress.png -------------------------------------------------------------------------------- /beautifyUi/default/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/radio_down.png -------------------------------------------------------------------------------- /beautifyUi/default/radio_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/radio_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/default/radio_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/radio_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/default/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/radio_normal.png -------------------------------------------------------------------------------- /beautifyUi/default/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/resize.png -------------------------------------------------------------------------------- /beautifyUi/default/resizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/resizehover.png -------------------------------------------------------------------------------- /beautifyUi/default/resizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/resizepress.png -------------------------------------------------------------------------------- /beautifyUi/default/retsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/retsize.png -------------------------------------------------------------------------------- /beautifyUi/default/retsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/retsizehover.png -------------------------------------------------------------------------------- /beautifyUi/default/retsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/default/retsizepress.png -------------------------------------------------------------------------------- /beautifyUi/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/icon.jpg -------------------------------------------------------------------------------- /beautifyUi/pink/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/checkbox_down.png -------------------------------------------------------------------------------- /beautifyUi/pink/checkbox_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/checkbox_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/pink/checkbox_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/checkbox_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/pink/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/checkbox_normal.png -------------------------------------------------------------------------------- /beautifyUi/pink/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/close.png -------------------------------------------------------------------------------- /beautifyUi/pink/closehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/closehover.png -------------------------------------------------------------------------------- /beautifyUi/pink/closepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/closepress.png -------------------------------------------------------------------------------- /beautifyUi/pink/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/down_arrow.png -------------------------------------------------------------------------------- /beautifyUi/pink/minsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/minsize.png -------------------------------------------------------------------------------- /beautifyUi/pink/minsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/minsizehover.png -------------------------------------------------------------------------------- /beautifyUi/pink/minsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/minsizepress.png -------------------------------------------------------------------------------- /beautifyUi/pink/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/radio_down.png -------------------------------------------------------------------------------- /beautifyUi/pink/radio_hoverCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/radio_hoverCheck.png -------------------------------------------------------------------------------- /beautifyUi/pink/radio_hoverUncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/radio_hoverUncheck.png -------------------------------------------------------------------------------- /beautifyUi/pink/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/radio_normal.png -------------------------------------------------------------------------------- /beautifyUi/pink/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/resize.png -------------------------------------------------------------------------------- /beautifyUi/pink/resizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/resizehover.png -------------------------------------------------------------------------------- /beautifyUi/pink/resizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/resizepress.png -------------------------------------------------------------------------------- /beautifyUi/pink/retsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/retsize.png -------------------------------------------------------------------------------- /beautifyUi/pink/retsizehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/retsizehover.png -------------------------------------------------------------------------------- /beautifyUi/pink/retsizepress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/pink/retsizepress.png -------------------------------------------------------------------------------- /beautifyUi/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/beautifyUi/theme.json -------------------------------------------------------------------------------- /cure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/cure.py -------------------------------------------------------------------------------- /qss_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/qss_getter.py -------------------------------------------------------------------------------- /resourse_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/resourse_cfg.py -------------------------------------------------------------------------------- /simple_qss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amiee-well/cureUi/HEAD/simple_qss.py --------------------------------------------------------------------------------