├── Builds ├── build-fluent-dark-no-mica.bat ├── build-fluent-dark.bat ├── build-fluent-light-no-mica.bat ├── build-fluent-light.bat ├── config.json ├── dark-config.json ├── fluent-dark-no-mica.qbtheme ├── fluent-dark.qbtheme ├── fluent-light-no-mica.qbtheme ├── fluent-light.qbtheme ├── fluent-theme │ ├── Dark.qss │ ├── DarkNoMica.qss │ ├── Light.qss │ ├── LightNoMica.qss │ └── controls │ │ ├── dark │ │ ├── CheckBox.svg │ │ ├── CheckBoxInterminate.svg │ │ ├── CheckBoxInterminatePressed.svg │ │ ├── CheckBoxPressed.svg │ │ ├── ComboBox.svg │ │ ├── ComboBoxDisabled.svg │ │ ├── RadioButton.svg │ │ ├── RadioButtonHover.svg │ │ ├── RadioButtonPressed.svg │ │ ├── ScrollBar.png │ │ ├── SpinBoxDown.svg │ │ ├── SpinBoxDownDisabled.svg │ │ ├── SpinBoxUp.svg │ │ ├── SpinBoxUpDisabled.svg │ │ ├── TreeViewClose.svg │ │ └── TreeViewOpen.svg │ │ └── light │ │ ├── CheckBox.svg │ │ ├── CheckBoxInterminate.svg │ │ ├── CheckBoxInterminatePressed.svg │ │ ├── CheckBoxPressed.svg │ │ ├── ComboBox.svg │ │ ├── ComboBoxDisabled.svg │ │ ├── RadioButton.svg │ │ ├── RadioButtonHover.svg │ │ ├── RadioButtonPressed.svg │ │ ├── ScrollBar.png │ │ ├── SpinBoxDown.svg │ │ ├── SpinBoxDownDisabled.svg │ │ ├── SpinBoxUp.svg │ │ ├── SpinBoxUpDisabled.svg │ │ ├── TreeViewClose.svg │ │ └── TreeViewOpen.svg ├── icons │ ├── dark │ │ ├── application-exit.svg │ │ ├── application-rss.svg │ │ ├── application-url.svg │ │ ├── browser-cookies.svg │ │ ├── chart-line.svg │ │ ├── checked-completed.svg │ │ ├── collapse.svg │ │ ├── configure.svg │ │ ├── connected.svg │ │ ├── dialog-warning.svg │ │ ├── directory.svg │ │ ├── disconnected.svg │ │ ├── download.svg │ │ ├── downloading.svg │ │ ├── edit-clear.svg │ │ ├── edit-copy.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-rename.svg │ │ ├── error.svg │ │ ├── expand.svg │ │ ├── filter-active.svg │ │ ├── filter-all.svg │ │ ├── filter-inactive.svg │ │ ├── filter-stalled.svg │ │ ├── firewalled.svg │ │ ├── folder-documents.svg │ │ ├── folder-new.svg │ │ ├── folder-remote.svg │ │ ├── force-recheck.svg │ │ ├── go-bottom.svg │ │ ├── go-down.svg │ │ ├── go-top.svg │ │ ├── go-up.svg │ │ ├── hash.svg │ │ ├── help-about.svg │ │ ├── help-contents.svg │ │ ├── icons.qrc │ │ ├── insert-link.svg │ │ ├── ip-blocked.svg │ │ ├── list-add.svg │ │ ├── list-remove.svg │ │ ├── loading.svg │ │ ├── mail-inbox.svg │ │ ├── mail-mark-read.svg │ │ ├── name.svg │ │ ├── network-connect.svg │ │ ├── network-server.svg │ │ ├── network-wired.svg │ │ ├── object-locked.svg │ │ ├── pause-session.svg │ │ ├── peers-add.svg │ │ ├── peers-remove.svg │ │ ├── peers.svg │ │ ├── plugins.svg │ │ ├── preferences-advanced.svg │ │ ├── preferences-bittorrent.svg │ │ ├── preferences-desktop.svg │ │ ├── preferences-webui.svg │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qbittorrent.ico │ │ ├── qbittorrent_file.ico │ │ ├── queued.svg │ │ ├── ratio.svg │ │ ├── reannounce.svg │ │ ├── rss_read_article.svg │ │ ├── rss_unread_article.svg │ │ ├── security-high.svg │ │ ├── security-low.svg │ │ ├── set-location.svg │ │ ├── slow.svg │ │ ├── slow_off.svg │ │ ├── speedometer.svg │ │ ├── stalledDL.svg │ │ ├── stalledUP.svg │ │ ├── stopped.svg │ │ ├── system-log-out.svg │ │ ├── tags.svg │ │ ├── task-complete.svg │ │ ├── task-reject.svg │ │ ├── text-plain.svg │ │ ├── tools-report-bug.svg │ │ ├── torrent-creator.svg │ │ ├── torrent-magnet.svg │ │ ├── torrent-start-forced.svg │ │ ├── torrent-start.svg │ │ ├── torrent-stop.svg │ │ ├── tracker-error.svg │ │ ├── tracker-warning.svg │ │ ├── trackerless.svg │ │ ├── trackers.svg │ │ ├── unavailable.svg │ │ ├── upload.svg │ │ ├── view-categories.svg │ │ ├── view-filter.svg │ │ ├── view-preview.svg │ │ ├── view-refresh.svg │ │ ├── view-statistics.svg │ │ └── wallet-open.svg │ └── light │ │ ├── application-exit.svg │ │ ├── application-rss.svg │ │ ├── application-url.svg │ │ ├── browser-cookies.svg │ │ ├── chart-line.svg │ │ ├── checked-completed.svg │ │ ├── collapse.svg │ │ ├── configure.svg │ │ ├── connected.svg │ │ ├── dialog-warning.svg │ │ ├── directory.svg │ │ ├── disconnected.svg │ │ ├── download.svg │ │ ├── downloading.svg │ │ ├── edit-clear.svg │ │ ├── edit-copy.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-rename.svg │ │ ├── error.svg │ │ ├── expand.svg │ │ ├── filter-active.svg │ │ ├── filter-all.svg │ │ ├── filter-inactive.svg │ │ ├── filter-stalled.svg │ │ ├── firewalled.svg │ │ ├── folder-documents.svg │ │ ├── folder-new.svg │ │ ├── folder-remote.svg │ │ ├── force-recheck.svg │ │ ├── go-bottom.svg │ │ ├── go-down.svg │ │ ├── go-top.svg │ │ ├── go-up.svg │ │ ├── hash.svg │ │ ├── help-about.svg │ │ ├── help-contents.svg │ │ ├── icons.qrc │ │ ├── insert-link.svg │ │ ├── ip-blocked.svg │ │ ├── list-add.svg │ │ ├── list-remove.svg │ │ ├── loading.svg │ │ ├── mail-inbox.svg │ │ ├── mail-mark-read.svg │ │ ├── name.svg │ │ ├── network-connect.svg │ │ ├── network-server.svg │ │ ├── network-wired.svg │ │ ├── object-locked.svg │ │ ├── pause-session.svg │ │ ├── peers-add.svg │ │ ├── peers-remove.svg │ │ ├── peers.svg │ │ ├── plugins.svg │ │ ├── preferences-advanced.svg │ │ ├── preferences-bittorrent.svg │ │ ├── preferences-desktop.svg │ │ ├── preferences-webui.svg │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qbittorrent.ico │ │ ├── qbittorrent_file.ico │ │ ├── queued.svg │ │ ├── ratio.svg │ │ ├── reannounce.svg │ │ ├── rss_read_article.svg │ │ ├── rss_unread_article.svg │ │ ├── security-high.svg │ │ ├── security-low.svg │ │ ├── set-location.svg │ │ ├── slow.svg │ │ ├── slow_off.svg │ │ ├── speedometer.svg │ │ ├── stalledDL.svg │ │ ├── stalledUP.svg │ │ ├── stopped.svg │ │ ├── system-log-out.svg │ │ ├── tags.svg │ │ ├── task-complete.svg │ │ ├── task-reject.svg │ │ ├── text-plain.svg │ │ ├── tools-report-bug.svg │ │ ├── torrent-creator.svg │ │ ├── torrent-magnet.svg │ │ ├── torrent-start-forced.svg │ │ ├── torrent-start.svg │ │ ├── torrent-stop.svg │ │ ├── tracker-error.svg │ │ ├── tracker-warning.svg │ │ ├── trackerless.svg │ │ ├── trackers.svg │ │ ├── unavailable.svg │ │ ├── upload.svg │ │ ├── view-categories.svg │ │ ├── view-filter.svg │ │ ├── view-preview.svg │ │ ├── view-refresh.svg │ │ ├── view-statistics.svg │ │ └── wallet-open.svg ├── make-resource.py └── tools │ └── rcc.exe ├── LICENSE ├── README.md ├── images ├── mica1.png ├── mica2.png └── mica3.png └── themes ├── fluent-dark-no-mica.qbtheme ├── fluent-dark.qbtheme ├── fluent-light-no-mica.qbtheme └── fluent-light.qbtheme /Builds/build-fluent-dark-no-mica.bat: -------------------------------------------------------------------------------- 1 | set SCRIPT_DIR=fluent-theme 2 | python make-resource.py -base-dir %SCRIPT_DIR%\ -find-files -config dark-config.json -icons-dir icons/dark -output fluent-dark-no-mica -style darknomica.qss -------------------------------------------------------------------------------- /Builds/build-fluent-dark.bat: -------------------------------------------------------------------------------- 1 | set SCRIPT_DIR=fluent-theme 2 | python make-resource.py -base-dir %SCRIPT_DIR%\ -find-files -config dark-config.json -icons-dir icons/dark -output fluent-dark -style dark.qss -------------------------------------------------------------------------------- /Builds/build-fluent-light-no-mica.bat: -------------------------------------------------------------------------------- 1 | set SCRIPT_DIR=fluent-theme 2 | python make-resource.py -base-dir %SCRIPT_DIR%\ -find-files -config config.json -icons-dir icons/light -output fluent-light-no-mica -style lightnomica.qss -------------------------------------------------------------------------------- /Builds/build-fluent-light.bat: -------------------------------------------------------------------------------- 1 | set SCRIPT_DIR=fluent-theme 2 | python make-resource.py -base-dir %SCRIPT_DIR%\ -find-files -config config.json -icons-dir icons/light -output fluent-light -style light.qss -------------------------------------------------------------------------------- /Builds/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "Palette.Link": "#005fb8", 4 | "Palette.LinkVisited": "#005fb8", 5 | 6 | "Log.Normal": "#202020", 7 | "Log.Info": "#005fb8", 8 | "Log.Warning": "#c3be41", 9 | "Log.Critical": "#c94949", 10 | "Log.BannedPeer": "#c94949", 11 | 12 | "RSS.ReadArticle": "#202020", 13 | "RSS.UnreadArticle": "#005fb8" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Builds/dark-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "Palette.Link": "#60cdff", 4 | "Palette.LinkVisited": "#60cdff", 5 | 6 | "Log.Normal": "#ffffff", 7 | "Log.Info": "#60cdff", 8 | "Log.Warning": "#fff85c", 9 | "Log.Critical": "#ff5f5f", 10 | "Log.BannedPeer": "#ff5f5f", 11 | 12 | "RSS.ReadArticle": "#ffffff", 13 | "RSS.UnreadArticle": "#60cdff" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Builds/fluent-dark-no-mica.qbtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-dark-no-mica.qbtheme -------------------------------------------------------------------------------- /Builds/fluent-dark.qbtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-dark.qbtheme -------------------------------------------------------------------------------- /Builds/fluent-light-no-mica.qbtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-light-no-mica.qbtheme -------------------------------------------------------------------------------- /Builds/fluent-light.qbtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-light.qbtheme -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/CheckBox.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/CheckBoxInterminate.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/CheckBoxInterminatePressed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/CheckBoxPressed.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/ComboBox.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/ComboBoxDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/RadioButton.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/RadioButtonHover.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/RadioButtonPressed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/ScrollBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-theme/controls/dark/ScrollBar.png -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/SpinBoxDown.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/SpinBoxDownDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/SpinBoxUp.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/SpinBoxUpDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/TreeViewClose.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/dark/TreeViewOpen.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/CheckBox.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/CheckBoxInterminate.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/CheckBoxInterminatePressed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/CheckBoxPressed.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/ComboBox.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/ComboBoxDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/RadioButton.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/RadioButtonHover.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/RadioButtonPressed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/ScrollBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/fluent-theme/controls/light/ScrollBar.png -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/SpinBoxDown.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/SpinBoxDownDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/SpinBoxUp.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/SpinBoxUpDisabled.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/TreeViewClose.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/fluent-theme/controls/light/TreeViewOpen.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /Builds/icons/dark/application-exit.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/application-rss.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/browser-cookies.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/chart-line.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/checked-completed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/collapse.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/connected.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/dialog-warning.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/directory.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/download.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/downloading.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/edit-clear.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/edit-copy.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/edit-find.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/edit-paste.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/edit-rename.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/error.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/expand.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/filter-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | -------------------------------------------------------------------------------- /Builds/icons/dark/filter-all.svg: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Builds/icons/dark/filter-inactive.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Builds/icons/dark/filter-stalled.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/folder-documents.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/folder-new.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/folder-remote.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/force-recheck.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/go-bottom.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/go-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/go-top.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/go-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/hash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /Builds/icons/dark/help-about.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/help-contents.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/insert-link.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/ip-blocked.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/list-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/list-remove.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/loading.svg: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /Builds/icons/dark/mail-inbox.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/mail-mark-read.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/name.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | -------------------------------------------------------------------------------- /Builds/icons/dark/network-connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | -------------------------------------------------------------------------------- /Builds/icons/dark/network-server.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/object-locked.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/pause-session.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /Builds/icons/dark/peers-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/peers-remove.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/peers.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/plugins.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | -------------------------------------------------------------------------------- /Builds/icons/dark/preferences-bittorrent.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/preferences-desktop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/preferences-webui.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/qbittorrent-tray-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/qbittorrent-tray-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/qbittorrent-tray.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/qbittorrent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/icons/dark/qbittorrent.ico -------------------------------------------------------------------------------- /Builds/icons/dark/qbittorrent_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/icons/dark/qbittorrent_file.ico -------------------------------------------------------------------------------- /Builds/icons/dark/queued.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/ratio.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/reannounce.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/rss_read_article.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/rss_unread_article.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/security-high.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/security-low.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/set-location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /Builds/icons/dark/slow.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/slow_off.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/stalledDL.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/stalledUP.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/stopped.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/dark/system-log-out.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/tags.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/task-complete.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/task-reject.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/text-plain.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/tools-report-bug.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/torrent-creator.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/torrent-start-forced.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Builds/icons/dark/torrent-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | -------------------------------------------------------------------------------- /Builds/icons/dark/torrent-stop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/tracker-error.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/tracker-warning.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/trackerless.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/trackers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /Builds/icons/dark/unavailable.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/upload.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/view-categories.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/view-filter.svg: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Builds/icons/dark/view-preview.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/view-refresh.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/view-statistics.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/dark/wallet-open.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/application-exit.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/application-rss.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/browser-cookies.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/chart-line.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/checked-completed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/collapse.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/connected.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/dialog-warning.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/directory.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/download.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/downloading.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/edit-clear.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/edit-copy.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/edit-find.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/edit-paste.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/edit-rename.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/error.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/expand.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/filter-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | -------------------------------------------------------------------------------- /Builds/icons/light/filter-all.svg: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Builds/icons/light/filter-inactive.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Builds/icons/light/filter-stalled.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/folder-documents.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/folder-new.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/folder-remote.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/force-recheck.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/go-bottom.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/go-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/go-top.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/go-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/hash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /Builds/icons/light/help-about.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/help-contents.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/insert-link.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/ip-blocked.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/list-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/list-remove.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/loading.svg: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /Builds/icons/light/mail-inbox.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/mail-mark-read.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/name.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | -------------------------------------------------------------------------------- /Builds/icons/light/network-connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | -------------------------------------------------------------------------------- /Builds/icons/light/network-server.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/object-locked.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/pause-session.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /Builds/icons/light/peers-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/peers-remove.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/peers.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/plugins.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | -------------------------------------------------------------------------------- /Builds/icons/light/preferences-bittorrent.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/preferences-desktop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/preferences-webui.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/qbittorrent-tray-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/qbittorrent-tray-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/qbittorrent-tray.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/qbittorrent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/icons/light/qbittorrent.ico -------------------------------------------------------------------------------- /Builds/icons/light/qbittorrent_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/icons/light/qbittorrent_file.ico -------------------------------------------------------------------------------- /Builds/icons/light/queued.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/ratio.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/reannounce.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/rss_read_article.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/rss_unread_article.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/security-high.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/security-low.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/set-location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /Builds/icons/light/slow.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/slow_off.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/stalledDL.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/stalledUP.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/stopped.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/system-log-out.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/tags.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/task-complete.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/task-reject.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/text-plain.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/tools-report-bug.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/torrent-creator.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/torrent-start-forced.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Builds/icons/light/torrent-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | -------------------------------------------------------------------------------- /Builds/icons/light/torrent-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Builds/icons/light/tracker-error.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/tracker-warning.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/trackerless.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/trackers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /Builds/icons/light/unavailable.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/upload.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/view-filter.svg: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Builds/icons/light/view-preview.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/view-refresh.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/view-statistics.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/icons/light/wallet-open.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Builds/tools/rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalihirsch/qBitTorrent-fluent-theme/85eb382214e71b37b37769bad678b04873ee10d1/Builds/tools/rcc.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Witali Hirsch 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # I'm no longer working on this project, but you can still submit pull requests if you’ve found a solution to any issues 2 | 3 | # Fluent theme for qBitTorrent 4 | Fluent dark/light themes for qBitTorrent! 5 | 6 | ## Requirements 7 | - Windows 11 22H1 and above 8 | - Mica For Everyone (optional, recommended version is `1.3.1.2`) 9 | - qBitTorrent 5.x 10 | 11 | ## Download 12 | Download Mica for Everyone [here.](https://github.com/MicaForEveryone/MicaForEveryone/releases/) 13 | 14 | ## Using 15 | To install the theme, go to `Options` > `Behavior` > `Interface` and enable `Use custom UI Theme` and select the path to the theme file 16 | 17 | If you want the theme to work correctly use these settings: 18 | 19 |
Mica for Everyone settings
20 | 21 | 22 |
23 |
24 |
26 |
27 |
29 |
30 |