{"id":16709655,"url":"https://github.com/leixingyu/unrealstylesheet","last_synced_at":"2025-08-28T06:14:03.419Z","repository":{"id":47537683,"uuid":"498970999","full_name":"leixingyu/unrealStylesheet","owner":"leixingyu","description":"An Unreal Engine 5 look QT stylesheet","archived":false,"fork":false,"pushed_at":"2024-05-02T11:41:40.000Z","size":44,"stargazers_count":131,"open_issues_count":4,"forks_count":16,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T06:44:14.182Z","etag":null,"topics":["qt","stylesheet","ue5","unreal-engine"],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leixingyu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-02T02:56:17.000Z","updated_at":"2025-04-12T17:19:51.000Z","dependencies_parsed_at":"2022-09-23T11:30:55.881Z","dependency_job_id":"4297c836-1001-4b88-b0fa-63327130a39d","html_url":"https://github.com/leixingyu/unrealStylesheet","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/leixingyu/unrealStylesheet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leixingyu%2FunrealStylesheet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leixingyu%2FunrealStylesheet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leixingyu%2FunrealStylesheet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leixingyu%2FunrealStylesheet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leixingyu","download_url":"https://codeload.github.com/leixingyu/unrealStylesheet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leixingyu%2FunrealStylesheet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272452466,"owners_count":24937465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-28T02:00:10.768Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["qt","stylesheet","ue5","unreal-engine"],"created_at":"2024-10-12T20:05:33.665Z","updated_at":"2025-08-28T06:14:03.402Z","avatar_url":"https://github.com/leixingyu.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unreal Stylesheet [![PyPI](https://img.shields.io/pypi/v/unreal_stylesheet?color=blue)](https://pypi.org/project/unreal-stylesheet/)\n\n A Qt stylesheet designed to make your tools look native in Unreal Engine 5  \n\nQuickstart sample code:\n```python\nimport unreal_stylesheet\n\nif __name__ == '__main__':\n    app = QtWidgets.QApplication(sys.argv)\n\n    # style your QApp, requires a QApplication instance\n    unreal_stylesheet.setup()  # \u003c== Just 1 line of code to make the magic happen\n\n    # create \u0026 show your Qt widget\n    window = TestWindow()\n    window.show()\n    sys.exit(app.exec_())                   \n```\n\n\u003cimg src=\"https://i.imgur.com/y7UP7k3.jpg\" alt=\"main\" width=\"100%\"/\u003e  \n\n## Installation\nPIP install the [latest release](https://pypi.org/project/unreal-stylesheet/) from PYPi (recommended):\n```\npython -m pip install unreal-stylesheet\n```\nor install from the repo:\n```\npython -m pip install git+https://github.com/leixingyu/unrealStylesheet\n```\n\n## Comparison\n\nThe following `.ui` files for testing can be found inside the `/ui` folder.  \n\n|default (editor.ui)| ue.qss|\n|---|---|\n|![](https://i.imgur.com/EX5naMy.png)| ![](https://i.imgur.com/M8CU4cN.jpg)|\n\n|default (tree.ui)|ue.qss |\n|---|---|\n|![](https://i.imgur.com/Xk8XYlQ.png)|![](https://i.imgur.com/DcQQwak.jpg) |\n\n|default (progress.ui)| ue.qss|\n|---|---|\n|![](https://i.imgur.com/6yMuCKD.png)| ![](https://i.imgur.com/NyskX8m.jpg)|\n\n## Contribute\n\nFeel free to make a PR or issue if you find a bug, or want to request a feature.  \nSome guidelines to modify this stylesheet:\n\n### Modifying the style sheet\n\n1. Modify the _CSS_ preprocessor `.scss` file\n2. Re-compile the `.qss`:   \n```commandline\nqtsass ue.scss -o ue.qss\n```\n\n⚠️ If you modify the `.qss` style sheet directly, your changes will be lost when the `.qss` is re-compiled in the future  \n\n\u003e Documentation about .scss can be found: [Sass Official website](https://sass-lang.com/guide)  \n\u003e You'll also need to install a Qt specific Sass: [qt-sass](https://github.com/spyder-ide/qtsass)  \n\n### Modifying icons\n\nThe icons are handled with Qt's resource system (see the [docs](https://doc.qt.io/qt-5/resources.html)) (which is dropped in qt6)\n\n1. Modify the `.qrc` file\n2. Re-compile the `.rcc` :\n```commandline\nrcc -binary icons.qrc -o icons.rcc\n```\n\n## References\n- Qt documentation: \n    - [stylesheets examples](https://doc.qt.io/qt-5/stylesheet-examples.html)\n    - [stylesheets reference](https://doc.qt.io/qt-5/stylesheet-reference.html)\n- Github repo: [Qt-Material](https://github.com/UN-GCPDS/qt-material)\n- Unreal has a different UI framework (Slate), future [read](https://minimaleffort.tech/qt-to-slate-transition-guide/) on comparing Qt to Slate\n- An example of this stylesheet in action: [unrealScriptEditor](https://github.com/leixingyu/unrealScriptEditor)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleixingyu%2Funrealstylesheet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleixingyu%2Funrealstylesheet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleixingyu%2Funrealstylesheet/lists"}