├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── release.yml │ └── run-ui-tests.yml ├── .gitignore ├── .run ├── Run Plugin.run.xml ├── Run Tests.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── Breeze Colors.svg └── CONTRIBUTING.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── qodana.yml ├── settings.gradle.kts └── src └── main └── resources ├── Breeze_Dark.icls ├── Breeze_Dark.theme.json ├── Breeze_Dark.xml ├── Breeze_Light.icls ├── Breeze_Light.theme.json ├── Breeze_Light.xml ├── META-INF ├── plugin.xml └── pluginIcon.svg ├── copy-files.py ├── icons-dark ├── actions │ ├── 16 │ │ ├── amarok_change_language.svg │ │ ├── application-exit.svg │ │ ├── application-menu.svg │ │ ├── atmosphere.svg │ │ ├── autocorrection.svg │ │ ├── bookmark-new.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── code-context.svg │ │ ├── code-variable.svg │ │ ├── collapse-all.svg │ │ ├── color-picker.svg │ │ ├── configure.svg │ │ ├── debug-execute-to-cursor.svg │ │ ├── debug-run.svg │ │ ├── debug-step-into.svg │ │ ├── debug-step-out.svg │ │ ├── debug-step-over.svg │ │ ├── deep-history.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-messages.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-scripts.svg │ │ ├── document-edit-sign.svg │ │ ├── document-edit.svg │ │ ├── document-encrypted.svg │ │ ├── document-import.svg │ │ ├── document-new.svg │ │ ├── document-open-remote.svg │ │ ├── document-open.svg │ │ ├── document-preview-archive.svg │ │ ├── document-print.svg │ │ ├── document-save-all.svg │ │ ├── document-share.svg │ │ ├── draw-highlight.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete.svg │ │ ├── edit-download.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find.svg │ │ ├── edit-redo.svg │ │ ├── edit-reset.svg │ │ ├── edit-select-all.svg │ │ ├── edit-undo.svg │ │ ├── expand-all.svg │ │ ├── filename-divider.svg │ │ ├── find-location.svg │ │ ├── folder-new.svg │ │ ├── format-list-unordered.svg │ │ ├── globe.svg │ │ ├── go-bottom.svg │ │ ├── go-down.svg │ │ ├── go-next-skip.svg │ │ ├── go-next.svg │ │ ├── go-previous-skip.svg │ │ ├── go-previous.svg │ │ ├── go-up.svg │ │ ├── grid-rectangular.svg │ │ ├── help-whatsthis.svg │ │ ├── im-user.svg │ │ ├── kt-set-max-upload-speed.svg │ │ ├── link.svg │ │ ├── list-add-user.svg │ │ ├── list-add.svg │ │ ├── list-remove.svg │ │ ├── mail-message-new-list.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-start.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── network-disconnect.svg │ │ ├── process-stop.svg │ │ ├── project-development-new-template.svg │ │ ├── project-development.svg │ │ ├── project-open.svg │ │ ├── run-build.svg │ │ ├── sidebar-collapse-left.svg │ │ ├── sidebar-expand-left.svg │ │ ├── swap-panels.svg │ │ ├── system-run.svg │ │ ├── tab-new.svg │ │ ├── tag.svg │ │ ├── text-wrap.svg │ │ ├── tools.svg │ │ ├── user-group-new.svg │ │ ├── vcs-branch.svg │ │ ├── vcs-commit.svg │ │ ├── vcs-diff.svg │ │ ├── vcs-merge-request.svg │ │ ├── vcs-merge.svg │ │ ├── vcs-pull.svg │ │ ├── vcs-push.svg │ │ ├── vcs-stash.svg │ │ ├── view-choose.svg │ │ ├── view-close.svg │ │ ├── view-filter.svg │ │ ├── view-group.svg │ │ ├── view-hidden.svg │ │ ├── view-list-text.svg │ │ ├── view-list-tree.svg │ │ ├── view-pim-tasks-pending.svg │ │ ├── view-preview.svg │ │ ├── view-readermode.svg │ │ ├── view-refresh.svg │ │ ├── view-restore.svg │ │ ├── view-sort.svg │ │ ├── view-split-left-right.svg │ │ ├── view-split-top-bottom.svg │ │ ├── view-task.svg │ │ ├── view-visible.svg │ │ ├── window-close.svg │ │ ├── window-pin.svg │ │ ├── window.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-in.svg │ │ ├── zoom-original.svg │ │ └── zoom-out.svg │ └── 22 │ │ └── kdenlive-unselect-all.svg ├── apps │ └── 16 │ │ └── system-help.svg ├── devices │ └── 16 │ │ ├── camera-photo.svg │ │ └── input-mouse.svg ├── emblems │ └── 16 │ │ └── rating.svg ├── mimetypes │ └── 16 │ │ ├── application-json.svg │ │ ├── application-octet-stream.svg │ │ ├── application-x-designer.svg │ │ ├── application-x-java.svg │ │ ├── application-x-javascript.svg │ │ ├── application-xhtml+xml.svg │ │ ├── application-zip.svg │ │ ├── image-x-generic.svg │ │ ├── text-css.svg │ │ ├── text-html.svg │ │ ├── text-x-changelog.svg │ │ ├── text-x-generic.svg │ │ ├── text-x-kotlin.svg │ │ ├── text-x-markdown.svg │ │ ├── text-x-patch.svg │ │ ├── text-x-script.svg │ │ └── text-xml.svg ├── places │ └── 16 │ │ ├── folder-blue.svg │ │ ├── folder-favorites.svg │ │ └── folder-red.svg └── status │ ├── 16 │ ├── battery-030.svg │ ├── battery-050.svg │ ├── camera-off.svg │ ├── camera-on.svg │ ├── data-error.svg │ ├── data-information.svg │ ├── dialog-information.svg │ ├── dialog-warning.svg │ ├── mic-off.svg │ ├── mic-on.svg │ └── security-low.svg │ └── 22 │ ├── dialog-error.svg │ ├── dialog-question.svg │ └── redshift-status-on.svg └── icons ├── actions ├── 16 │ ├── amarok_change_language.svg │ ├── application-exit.svg │ ├── application-menu.svg │ ├── atmosphere.svg │ ├── autocorrection.svg │ ├── bookmark-new.svg │ ├── call-start.svg │ ├── call-stop.svg │ ├── code-context.svg │ ├── code-variable.svg │ ├── collapse-all.svg │ ├── color-picker.svg │ ├── configure.svg │ ├── debug-execute-to-cursor.svg │ ├── debug-run.svg │ ├── debug-step-into.svg │ ├── debug-step-out.svg │ ├── debug-step-over.svg │ ├── deep-history.svg │ ├── dialog-cancel.svg │ ├── dialog-messages.svg │ ├── dialog-ok-apply.svg │ ├── dialog-scripts.svg │ ├── document-edit-sign.svg │ ├── document-edit.svg │ ├── document-encrypted.svg │ ├── document-import.svg │ ├── document-new.svg │ ├── document-open-remote.svg │ ├── document-open.svg │ ├── document-preview-archive.svg │ ├── document-print.svg │ ├── document-save-all.svg │ ├── document-share.svg │ ├── draw-highlight.svg │ ├── edit-copy.svg │ ├── edit-cut.svg │ ├── edit-delete.svg │ ├── edit-download.svg │ ├── edit-find-replace.svg │ ├── edit-find.svg │ ├── edit-redo.svg │ ├── edit-reset.svg │ ├── edit-select-all.svg │ ├── edit-undo.svg │ ├── expand-all.svg │ ├── filename-divider.svg │ ├── find-location.svg │ ├── folder-new.svg │ ├── format-list-unordered.svg │ ├── globe.svg │ ├── go-bottom.svg │ ├── go-down.svg │ ├── go-next-skip.svg │ ├── go-next.svg │ ├── go-previous-skip.svg │ ├── go-previous.svg │ ├── go-up.svg │ ├── grid-rectangular.svg │ ├── help-whatsthis.svg │ ├── im-user.svg │ ├── kt-set-max-upload-speed.svg │ ├── link.svg │ ├── list-add-user.svg │ ├── list-add.svg │ ├── list-remove.svg │ ├── mail-message-new-list.svg │ ├── media-playback-pause.svg │ ├── media-playback-start.svg │ ├── media-seek-backward.svg │ ├── media-seek-forward.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward.svg │ ├── network-disconnect.svg │ ├── process-stop.svg │ ├── project-development-new-template.svg │ ├── project-development.svg │ ├── project-open.svg │ ├── run-build.svg │ ├── sidebar-collapse-left.svg │ ├── sidebar-expand-left.svg │ ├── swap-panels.svg │ ├── system-run.svg │ ├── tab-new.svg │ ├── tag.svg │ ├── text-wrap.svg │ ├── tools.svg │ ├── user-group-new.svg │ ├── vcs-branch.svg │ ├── vcs-commit.svg │ ├── vcs-diff.svg │ ├── vcs-merge-request.svg │ ├── vcs-merge.svg │ ├── vcs-pull.svg │ ├── vcs-push.svg │ ├── vcs-stash.svg │ ├── view-choose.svg │ ├── view-close.svg │ ├── view-filter.svg │ ├── view-group.svg │ ├── view-hidden.svg │ ├── view-list-text.svg │ ├── view-list-tree.svg │ ├── view-pim-tasks-pending.svg │ ├── view-preview.svg │ ├── view-readermode.svg │ ├── view-refresh.svg │ ├── view-restore.svg │ ├── view-sort.svg │ ├── view-split-left-right.svg │ ├── view-split-top-bottom.svg │ ├── view-task.svg │ ├── view-visible.svg │ ├── window-close.svg │ ├── window-pin.svg │ ├── window.svg │ ├── zoom-fit-best.svg │ ├── zoom-in.svg │ ├── zoom-original.svg │ └── zoom-out.svg └── 22 │ └── kdenlive-unselect-all.svg ├── apps └── 16 │ └── system-help.svg ├── devices └── 16 │ ├── camera-photo.svg │ └── input-mouse.svg ├── emblems └── 16 │ └── rating.svg ├── mimetypes └── 16 │ ├── application-json.svg │ ├── application-octet-stream.svg │ ├── application-x-designer.svg │ ├── application-x-java.svg │ ├── application-x-javascript.svg │ ├── application-xhtml+xml.svg │ ├── application-zip.svg │ ├── image-x-generic.svg │ ├── text-css.svg │ ├── text-html.svg │ ├── text-x-changelog.svg │ ├── text-x-generic.svg │ ├── text-x-kotlin.svg │ ├── text-x-markdown.svg │ ├── text-x-patch.svg │ ├── text-x-script.svg │ └── text-xml.svg ├── places └── 16 │ ├── folder-blue.svg │ ├── folder-favorites.svg │ └── folder-red.svg └── status ├── 16 ├── battery-030.svg ├── battery-050.svg ├── camera-off.svg ├── camera-on.svg ├── data-error.svg ├── data-information.svg ├── dialog-information.svg ├── dialog-warning.svg ├── mic-off.svg ├── mic-on.svg └── security-low.svg └── 22 ├── dialog-error.svg ├── dialog-question.svg └── redshift-status-on.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.github/workflows/run-ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | .intellijPlatform 4 | .qodana 5 | build 6 | -------------------------------------------------------------------------------- /.run/Run Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.run/Run Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.run/Run Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/README.md -------------------------------------------------------------------------------- /docs/Breeze Colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/docs/Breeze Colors.svg -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/gradlew.bat -------------------------------------------------------------------------------- /qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/qodana.yml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/resources/Breeze_Dark.icls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Dark.icls -------------------------------------------------------------------------------- /src/main/resources/Breeze_Dark.theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Dark.theme.json -------------------------------------------------------------------------------- /src/main/resources/Breeze_Dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Dark.xml -------------------------------------------------------------------------------- /src/main/resources/Breeze_Light.icls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Light.icls -------------------------------------------------------------------------------- /src/main/resources/Breeze_Light.theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Light.theme.json -------------------------------------------------------------------------------- /src/main/resources/Breeze_Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/Breeze_Light.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/copy-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/copy-files.py -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/amarok_change_language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/amarok_change_language.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/application-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/application-exit.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/application-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/application-menu.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/atmosphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/atmosphere.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/autocorrection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/autocorrection.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/bookmark-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/bookmark-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/call-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/call-start.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/call-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/call-stop.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/code-context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/code-context.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/code-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/code-variable.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/collapse-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/collapse-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/color-picker.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/configure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/configure.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/debug-execute-to-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/debug-execute-to-cursor.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/debug-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/debug-run.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/debug-step-into.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/debug-step-into.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/debug-step-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/debug-step-out.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/debug-step-over.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/debug-step-over.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/deep-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/deep-history.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/dialog-cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/dialog-cancel.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/dialog-messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/dialog-messages.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/dialog-ok-apply.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/dialog-scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/dialog-scripts.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-edit-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-edit-sign.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-edit.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-encrypted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-encrypted.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-import.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-open-remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-open-remote.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-open.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-preview-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-preview-archive.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-print.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-save-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-save-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/document-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/document-share.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/draw-highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/draw-highlight.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-copy.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-cut.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-delete.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-download.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-find-replace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-find-replace.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-find.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-redo.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-reset.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-select-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/edit-undo.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/expand-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/expand-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/filename-divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/filename-divider.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/find-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/find-location.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/folder-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/folder-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/format-list-unordered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/format-list-unordered.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/globe.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-bottom.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-down.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-next-skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-next-skip.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-next.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-previous-skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-previous-skip.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-previous.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/go-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/go-up.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/grid-rectangular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/grid-rectangular.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/help-whatsthis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/help-whatsthis.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/im-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/im-user.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/kt-set-max-upload-speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/kt-set-max-upload-speed.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/link.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/list-add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/list-add-user.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/list-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/list-add.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/list-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/list-remove.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/mail-message-new-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/mail-message-new-list.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-playback-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-playback-pause.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-playback-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-playback-start.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-seek-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-seek-backward.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-seek-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-seek-forward.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-skip-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-skip-backward.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/media-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/media-skip-forward.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/network-disconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/network-disconnect.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/process-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/process-stop.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/project-development-new-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/project-development-new-template.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/project-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/project-development.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/project-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/project-open.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/run-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/run-build.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/sidebar-collapse-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/sidebar-collapse-left.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/sidebar-expand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/sidebar-expand-left.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/swap-panels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/swap-panels.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/system-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/system-run.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/tab-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/tab-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/tag.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/text-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/text-wrap.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/tools.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/user-group-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/user-group-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-branch.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-commit.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-diff.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-merge-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-merge-request.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-merge.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-pull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-pull.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-push.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/vcs-stash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/vcs-stash.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-choose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-choose.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-close.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-filter.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-group.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-hidden.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-list-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-list-text.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-list-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-list-tree.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-pim-tasks-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-pim-tasks-pending.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-preview.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-readermode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-readermode.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-refresh.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-restore.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-sort.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-split-left-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-split-left-right.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-split-top-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-split-top-bottom.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-task.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/view-visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/view-visible.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/window-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/window-close.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/window-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/window-pin.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/window.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/zoom-fit-best.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/zoom-fit-best.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/zoom-in.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/zoom-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/zoom-original.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/16/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/16/zoom-out.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/actions/22/kdenlive-unselect-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/actions/22/kdenlive-unselect-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/apps/16/system-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/apps/16/system-help.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/devices/16/camera-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/devices/16/camera-photo.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/devices/16/input-mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/devices/16/input-mouse.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/emblems/16/rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/emblems/16/rating.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-json.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-octet-stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-octet-stream.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-x-designer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-x-designer.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-x-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-x-java.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-x-javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-x-javascript.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-xhtml+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-xhtml+xml.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/application-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/application-zip.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/image-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/image-x-generic.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-css.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-html.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-changelog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-changelog.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-generic.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-kotlin.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-markdown.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-patch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-patch.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-x-script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-x-script.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/mimetypes/16/text-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/mimetypes/16/text-xml.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/places/16/folder-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/places/16/folder-blue.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/places/16/folder-favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/places/16/folder-favorites.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/places/16/folder-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/places/16/folder-red.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/battery-030.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/battery-030.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/battery-050.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/battery-050.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/camera-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/camera-off.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/camera-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/camera-on.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/data-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/data-error.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/data-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/data-information.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/dialog-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/dialog-information.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/dialog-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/dialog-warning.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/mic-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/mic-off.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/mic-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/mic-on.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/16/security-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/16/security-low.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/22/dialog-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/22/dialog-error.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/22/dialog-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/22/dialog-question.svg -------------------------------------------------------------------------------- /src/main/resources/icons-dark/status/22/redshift-status-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons-dark/status/22/redshift-status-on.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/amarok_change_language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/amarok_change_language.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/application-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/application-exit.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/application-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/application-menu.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/atmosphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/atmosphere.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/autocorrection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/autocorrection.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/bookmark-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/bookmark-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/call-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/call-start.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/call-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/call-stop.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/code-context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/code-context.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/code-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/code-variable.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/collapse-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/collapse-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/color-picker.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/configure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/configure.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/debug-execute-to-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/debug-execute-to-cursor.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/debug-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/debug-run.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/debug-step-into.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/debug-step-into.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/debug-step-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/debug-step-out.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/debug-step-over.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/debug-step-over.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/deep-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/deep-history.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/dialog-cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/dialog-cancel.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/dialog-messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/dialog-messages.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/dialog-ok-apply.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/dialog-scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/dialog-scripts.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-edit-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-edit-sign.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-edit.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-encrypted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-encrypted.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-import.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-open-remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-open-remote.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-open.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-preview-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-preview-archive.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-print.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-save-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-save-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/document-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/document-share.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/draw-highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/draw-highlight.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-copy.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-cut.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-delete.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-download.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-find-replace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-find-replace.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-find.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-redo.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-reset.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-select-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/edit-undo.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/expand-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/expand-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/filename-divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/filename-divider.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/find-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/find-location.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/folder-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/folder-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/format-list-unordered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/format-list-unordered.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/globe.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-bottom.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-down.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-next-skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-next-skip.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-next.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-previous-skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-previous-skip.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-previous.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/go-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/go-up.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/grid-rectangular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/grid-rectangular.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/help-whatsthis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/help-whatsthis.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/im-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/im-user.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/kt-set-max-upload-speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/kt-set-max-upload-speed.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/link.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/list-add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/list-add-user.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/list-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/list-add.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/list-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/list-remove.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/mail-message-new-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/mail-message-new-list.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-playback-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-playback-pause.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-playback-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-playback-start.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-seek-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-seek-backward.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-seek-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-seek-forward.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-skip-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-skip-backward.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/media-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/media-skip-forward.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/network-disconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/network-disconnect.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/process-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/process-stop.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/project-development-new-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/project-development-new-template.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/project-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/project-development.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/project-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/project-open.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/run-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/run-build.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/sidebar-collapse-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/sidebar-collapse-left.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/sidebar-expand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/sidebar-expand-left.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/swap-panels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/swap-panels.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/system-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/system-run.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/tab-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/tab-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/tag.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/text-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/text-wrap.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/tools.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/user-group-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/user-group-new.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-branch.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-commit.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-diff.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-merge-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-merge-request.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-merge.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-pull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-pull.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-push.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/vcs-stash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/vcs-stash.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-choose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-choose.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-close.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-filter.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-group.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-hidden.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-list-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-list-text.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-list-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-list-tree.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-pim-tasks-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-pim-tasks-pending.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-preview.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-readermode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-readermode.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-refresh.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-restore.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-sort.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-split-left-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-split-left-right.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-split-top-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-split-top-bottom.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-task.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/view-visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/view-visible.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/window-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/window-close.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/window-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/window-pin.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/window.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/zoom-fit-best.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/zoom-fit-best.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/zoom-in.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/zoom-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/zoom-original.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/16/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/16/zoom-out.svg -------------------------------------------------------------------------------- /src/main/resources/icons/actions/22/kdenlive-unselect-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/actions/22/kdenlive-unselect-all.svg -------------------------------------------------------------------------------- /src/main/resources/icons/apps/16/system-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/apps/16/system-help.svg -------------------------------------------------------------------------------- /src/main/resources/icons/devices/16/camera-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/devices/16/camera-photo.svg -------------------------------------------------------------------------------- /src/main/resources/icons/devices/16/input-mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/devices/16/input-mouse.svg -------------------------------------------------------------------------------- /src/main/resources/icons/emblems/16/rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/emblems/16/rating.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-json.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-octet-stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-octet-stream.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-x-designer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-x-designer.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-x-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-x-java.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-x-javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-x-javascript.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-xhtml+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-xhtml+xml.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/application-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/application-zip.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/image-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/image-x-generic.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-css.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-html.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-changelog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-changelog.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-generic.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-kotlin.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-markdown.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-patch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-patch.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-x-script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-x-script.svg -------------------------------------------------------------------------------- /src/main/resources/icons/mimetypes/16/text-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/mimetypes/16/text-xml.svg -------------------------------------------------------------------------------- /src/main/resources/icons/places/16/folder-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/places/16/folder-blue.svg -------------------------------------------------------------------------------- /src/main/resources/icons/places/16/folder-favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/places/16/folder-favorites.svg -------------------------------------------------------------------------------- /src/main/resources/icons/places/16/folder-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/places/16/folder-red.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/battery-030.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/battery-030.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/battery-050.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/battery-050.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/camera-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/camera-off.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/camera-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/camera-on.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/data-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/data-error.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/data-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/data-information.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/dialog-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/dialog-information.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/dialog-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/dialog-warning.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/mic-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/mic-off.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/mic-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/mic-on.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/16/security-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/16/security-low.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/22/dialog-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/22/dialog-error.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/22/dialog-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/22/dialog-question.svg -------------------------------------------------------------------------------- /src/main/resources/icons/status/22/redshift-status-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0drex/Intellij-KDE-Breeze-Theme/HEAD/src/main/resources/icons/status/22/redshift-status-on.svg --------------------------------------------------------------------------------