├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── semgrep.yml │ └── winget.yml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── encodings.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── .travis.yml ├── LICENSE ├── README.en.md ├── README.md ├── SECURITY.md ├── build ├── bin │ ├── icon.ico │ ├── icon.png │ └── splashscreen.png ├── exe4j.exe4j └── ultimatecube.iss ├── buildNumber.properties ├── doc ├── img │ ├── 1_quick.png │ ├── 2_ssh.png │ ├── 3_sftp.png │ ├── 4_create_session.png │ ├── img.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_4.png │ ├── img_5.png │ └── splashscreen.png ├── session.md └── tips.md ├── libs ├── jediterm-core-3.44-SNAPSHOT-sources.jar ├── jediterm-core-3.44-SNAPSHOT.jar ├── jediterm-ui-3.44-SNAPSHOT-sources.jar ├── jediterm-ui-3.44-SNAPSHOT.jar └── tightvnc-jviewer.jar ├── pom.xml ├── pom.xml.versionsBackup ├── prepare.bat ├── ultimate-app ├── buildNumber.properties ├── dependency-reduced-pom.xml ├── pom.xml ├── pom.xml.versionsBackup ├── src │ ├── main │ │ ├── java-templates │ │ │ └── com │ │ │ │ └── g3g4x5x6 │ │ │ │ └── Version.java │ │ ├── java │ │ │ └── com │ │ │ │ └── g3g4x5x6 │ │ │ │ ├── App.java │ │ │ │ ├── AppConfig.java │ │ │ │ ├── MainFrame.java │ │ │ │ ├── exception │ │ │ │ └── UserStopException.java │ │ │ │ ├── panel │ │ │ │ ├── console │ │ │ │ │ ├── CmdSettingsProvider.java │ │ │ │ │ └── ConsolePane.java │ │ │ │ ├── focus │ │ │ │ │ ├── FocusFrame.java │ │ │ │ │ └── FocusPanel.java │ │ │ │ ├── notepad │ │ │ │ │ ├── EditorPanel.java │ │ │ │ │ └── NotepadDialog.java │ │ │ │ ├── other │ │ │ │ │ ├── ConnectionPane.java │ │ │ │ │ └── SysinfoPane.java │ │ │ │ └── session │ │ │ │ │ ├── NewSessionManagerPanel.java │ │ │ │ │ ├── RecentSessionPanel.java │ │ │ │ │ └── SessionFileUtil.java │ │ │ │ ├── remote │ │ │ │ ├── NewTabbedPane.java │ │ │ │ ├── rdp │ │ │ │ │ └── RdpPane.java │ │ │ │ ├── serial │ │ │ │ │ ├── SerialPane.java │ │ │ │ │ ├── SerialSettingsProvider.java │ │ │ │ │ └── SerialTtyConnector.java │ │ │ │ ├── ssh │ │ │ │ │ ├── DefaultTerminalTypeAheadSettings.java │ │ │ │ │ ├── DefaultTtyConnector.java │ │ │ │ │ ├── DropTargetListenerImpl.java │ │ │ │ │ ├── QuestionerUserInfo.java │ │ │ │ │ ├── SessionInfo.java │ │ │ │ │ ├── SshSettingsProvider.java │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── NewSshPane.java │ │ │ │ │ │ └── SshTabbedPane.java │ │ │ │ │ └── sftp │ │ │ │ │ │ ├── DropTargetListenerBrowserImpl.java │ │ │ │ │ │ ├── FilesBrowser.java │ │ │ │ │ │ ├── FilesBrowserTableCellRenderer.java │ │ │ │ │ │ └── TaskProgressPanel.java │ │ │ │ ├── telnet │ │ │ │ │ ├── TelnetPane.java │ │ │ │ │ ├── TelnetSettingsProvider.java │ │ │ │ │ └── TelnetTtyConnector.java │ │ │ │ ├── utils │ │ │ │ │ ├── CommonUtil.java │ │ │ │ │ ├── EditorUtils.java │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ ├── SshUtil.java │ │ │ │ │ ├── TableUtil.java │ │ │ │ │ ├── TreeUtil.java │ │ │ │ │ ├── VaultUtil.java │ │ │ │ │ └── session │ │ │ │ │ │ ├── SessionEditTool.java │ │ │ │ │ │ ├── SessionOpenTool.java │ │ │ │ │ │ └── SessionUtil.java │ │ │ │ └── vnc │ │ │ │ │ └── VncPane.java │ │ │ │ ├── settings │ │ │ │ ├── BasicPanel.java │ │ │ │ ├── BehaviorPanel.java │ │ │ │ ├── SettingsDialog.java │ │ │ │ ├── SettingsInterface.java │ │ │ │ └── TerminalPanel.java │ │ │ │ ├── tools │ │ │ │ ├── PasswordGeneratorPanel.java │ │ │ │ └── external │ │ │ │ │ └── ExternalToolIntegration.java │ │ │ │ ├── ui │ │ │ │ ├── BaseEditorPanel.java │ │ │ │ ├── GuiUtil.java │ │ │ │ ├── StatusBar.java │ │ │ │ ├── ToolBar.java │ │ │ │ ├── dialog │ │ │ │ │ ├── AboutDialog.java │ │ │ │ │ └── LockDialog.java │ │ │ │ ├── icon │ │ │ │ │ ├── AccentColorIcon.java │ │ │ │ │ └── SizeGripIcon.java │ │ │ │ ├── terminal │ │ │ │ │ ├── pty │ │ │ │ │ │ └── PtyProcessTtyConnector.java │ │ │ │ │ └── settings │ │ │ │ │ │ ├── ColorScheme.java │ │ │ │ │ │ └── DefaultColorPaletteImpl.java │ │ │ │ └── tray │ │ │ │ │ ├── DefaultTrayIcon.java │ │ │ │ │ └── DefaultTrayIconPopupMenu.java │ │ │ │ ├── user │ │ │ │ ├── UserDialog.java │ │ │ │ └── git │ │ │ │ │ ├── KeyPairGeneratorUtil.java │ │ │ │ │ ├── PBKDF2KeyPairGeneratorUtil.java │ │ │ │ │ ├── PasswordUtils.java │ │ │ │ │ └── Workspace.java │ │ │ │ └── utils │ │ │ │ ├── CheckUtil.java │ │ │ │ ├── DialogUtil.java │ │ │ │ ├── DirectoryCompressionWithEncryption.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── InternalToolUtils.java │ │ │ │ ├── SessionExcelHelper.java │ │ │ │ ├── SessionExcelUtil.java │ │ │ │ └── os │ │ │ │ ├── OsInfoUtil.java │ │ │ │ └── OsType.java │ │ └── resources │ │ │ ├── ThemeClass.txt │ │ │ ├── app.png │ │ │ ├── application.properties │ │ │ ├── fonts │ │ │ ├── JetBrainsMono │ │ │ │ ├── JetBrainsMono-Regular.ttf │ │ │ │ └── JetBrainsMonoNL-Regular.ttf │ │ │ └── SarasaMono-TTF-1.0.13 │ │ │ │ └── SarasaMonoSC-Regular.ttf │ │ │ ├── icon.ico │ │ │ ├── icon.png │ │ │ ├── icons │ │ │ ├── AddNewSectionRule.svg │ │ │ ├── AddNewSectionRule_dark.svg │ │ │ ├── Administrator.svg │ │ │ ├── BrowserSystemDefault(GrayDark).svg │ │ │ ├── MarkdownPlugin.svg │ │ │ ├── OpenTerminal_13x13.svg │ │ │ ├── OpenTerminal_13x13_dark.svg │ │ │ ├── RecentlyUsed.svg │ │ │ ├── Save.svg │ │ │ ├── ShowRecentTabStripItems(Color).svg │ │ │ ├── Target.svg │ │ │ ├── TargetR.svg │ │ │ ├── TestExecutionStatus.svg │ │ │ ├── activity.svg │ │ │ ├── add.svg │ │ │ ├── addBookmarksList.svg │ │ │ ├── addBookmarksList_dark.svg │ │ │ ├── addFile.svg │ │ │ ├── addFile_dark.svg │ │ │ ├── addList.svg │ │ │ ├── addList_dark.svg │ │ │ ├── addNote.svg │ │ │ ├── addToDictionary.svg │ │ │ ├── addToDictionary_dark.svg │ │ │ ├── add_dark.svg │ │ │ ├── analyzer.svg │ │ │ ├── asm.svg │ │ │ ├── back.svg │ │ │ ├── back_dark.svg │ │ │ ├── balloonError.svg │ │ │ ├── balloonError_dark.svg │ │ │ ├── bookmarksList.svg │ │ │ ├── bookmarksList_dark.svg │ │ │ ├── buildLoadChanges.svg │ │ │ ├── cancel.svg │ │ │ ├── cancel_dark.svg │ │ │ ├── cargoGenerate.svg │ │ │ ├── changeView.svg │ │ │ ├── changeView_dark.svg │ │ │ ├── chromium.svg │ │ │ ├── close.svg │ │ │ ├── closeHover.svg │ │ │ ├── colGreyKey.svg │ │ │ ├── colors.svg │ │ │ ├── colors_dark.svg │ │ │ ├── commit.svg │ │ │ ├── connectionStatus.svg │ │ │ ├── connectionStatus_dark.svg │ │ │ ├── connector.svg │ │ │ ├── console.svg │ │ │ ├── consoleRun.svg │ │ │ ├── consoleRun_dark.svg │ │ │ ├── console_dark.svg │ │ │ ├── converter.svg │ │ │ ├── copy.svg │ │ │ ├── copy_dark.svg │ │ │ ├── cwmPermissions.svg │ │ │ ├── cwmPermissions_dark.svg │ │ │ ├── cwmScreenOff.svg │ │ │ ├── cwmScreenOff_dark.svg │ │ │ ├── cwmScreenOn.svg │ │ │ ├── cwmScreenOn_dark.svg │ │ │ ├── cyan-dot.svg │ │ │ ├── delete.svg │ │ │ ├── deleteHovered.svg │ │ │ ├── deploy.svg │ │ │ ├── deploy_dark.svg │ │ │ ├── diff.svg │ │ │ ├── diff_dark.svg │ │ │ ├── digitalOceanSpaces.svg │ │ │ ├── digitalOceanSpaces_dark.svg │ │ │ ├── download.svg │ │ │ ├── download_dark.svg │ │ │ ├── editScheme.svg │ │ │ ├── editScheme_dark.svg │ │ │ ├── editSource.svg │ │ │ ├── editSource_dark.svg │ │ │ ├── end.svg │ │ │ ├── execute.svg │ │ │ ├── execute_dark.svg │ │ │ ├── exit.svg │ │ │ ├── exit_dark.svg │ │ │ ├── experimentalFeatures.svg │ │ │ ├── experimentalFeatures_dark.svg │ │ │ ├── export.svg │ │ │ ├── export_dark.svg │ │ │ ├── externalTools.svg │ │ │ ├── externalTools_dark.svg │ │ │ ├── eye.svg │ │ │ ├── file-add-any.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-as.svg │ │ │ ├── file-aspectj.svg │ │ │ ├── file-config.svg │ │ │ ├── file-css.svg │ │ │ ├── file-custom.svg │ │ │ ├── file-diagram.svg │ │ │ ├── file-dtd.svg │ │ │ ├── file-go.svg │ │ │ ├── file-gql.svg │ │ │ ├── file-htaccess.svg │ │ │ ├── file-html.svg │ │ │ ├── file-idl.svg │ │ │ ├── file-java-class.svg │ │ │ ├── file-java-outside-source.svg │ │ │ ├── file-java.svg │ │ │ ├── file-js.svg │ │ │ ├── file-json-dark.svg │ │ │ ├── file-json-schema-dark.svg │ │ │ ├── file-json-schema.svg │ │ │ ├── file-json.svg │ │ │ ├── file-jsp.svg │ │ │ ├── file-jspx.svg │ │ │ ├── file-kotlin.svg │ │ │ ├── file-manifest.svg │ │ │ ├── file-properties.svg │ │ │ ├── file-python.svg │ │ │ ├── file-regexp.svg │ │ │ ├── file-text.svg │ │ │ ├── file-ts.svg │ │ │ ├── file-tsx.svg │ │ │ ├── file-ui-form.svg │ │ │ ├── file-unknown.svg │ │ │ ├── file-wsdl.svg │ │ │ ├── file-xhtml.svg │ │ │ ├── file-xml.svg │ │ │ ├── file-xsd.svg │ │ │ ├── file-yaml.svg │ │ │ ├── file.svg │ │ │ ├── fileTransfer.svg │ │ │ ├── fileTransfer_dark.svg │ │ │ ├── find.svg │ │ │ ├── find_dark.svg │ │ │ ├── fitContent.svg │ │ │ ├── fitContent_dark.svg │ │ │ ├── flattenPackages.svg │ │ │ ├── flattenPackages_dark.svg │ │ │ ├── folders.svg │ │ │ ├── folders_dark.svg │ │ │ ├── forward.svg │ │ │ ├── forward_dark.svg │ │ │ ├── generatedFolder.svg │ │ │ ├── generatedFolder_dark.svg │ │ │ ├── goldKey.svg │ │ │ ├── groups.svg │ │ │ ├── groups_dark.svg │ │ │ ├── history.svg │ │ │ ├── history_dark.svg │ │ │ ├── homeFolder.svg │ │ │ ├── homeFolder_dark.svg │ │ │ ├── htaccess.svg │ │ │ ├── ideUpdate.svg │ │ │ ├── ideUpdate_dark.svg │ │ │ ├── ignore_file.svg │ │ │ ├── ignore_file_dark.svg │ │ │ ├── import.svg │ │ │ ├── import_dark.svg │ │ │ ├── info.svg │ │ │ ├── info_dark.svg │ │ │ ├── informationDialog.svg │ │ │ ├── informationDialog_dark.svg │ │ │ ├── informix.svg │ │ │ ├── informix_dark.svg │ │ │ ├── inspectionsOK.svg │ │ │ ├── inspectionsOK_dark.svg │ │ │ ├── intentionBulb.svg │ │ │ ├── intentionBulbGrey.svg │ │ │ ├── intersystemCache.svg │ │ │ ├── intersystemCache_dark.svg │ │ │ ├── lightning.svg │ │ │ ├── lightning_dark.svg │ │ │ ├── linux.svg │ │ │ ├── list.svg │ │ │ ├── listFiles.svg │ │ │ ├── listFiles_dark.svg │ │ │ ├── locate.svg │ │ │ ├── locate_dark.svg │ │ │ ├── lock.svg │ │ │ ├── lock_dark.svg │ │ │ ├── macOS.svg │ │ │ ├── matchCase.svg │ │ │ ├── matchCaseSelected.svg │ │ │ ├── menu-cut.svg │ │ │ ├── menu-cut_dark.svg │ │ │ ├── menu-open.svg │ │ │ ├── menu-open_dark.svg │ │ │ ├── menu-paste.svg │ │ │ ├── menu-paste_dark.svg │ │ │ ├── menu-saveall.svg │ │ │ ├── menu-saveall_dark.svg │ │ │ ├── moduleDirectory.svg │ │ │ ├── moduleDirectory_dark.svg │ │ │ ├── newFolder.svg │ │ │ ├── newFolder_dark.svg │ │ │ ├── nextOccurence.svg │ │ │ ├── nextOccurence_dark.svg │ │ │ ├── openNewTab.svg │ │ │ ├── openNewTab_dark.svg │ │ │ ├── passwordField.svg │ │ │ ├── pinTab.svg │ │ │ ├── pluginIcon.svg │ │ │ ├── popFrame.svg │ │ │ ├── popFrame_dark.svg │ │ │ ├── previousOccurence.svg │ │ │ ├── previousOccurence_dark.svg │ │ │ ├── project.svg │ │ │ ├── redo.svg │ │ │ ├── redo_dark.svg │ │ │ ├── refresh.svg │ │ │ ├── refresh_dark.svg │ │ │ ├── regex.svg │ │ │ ├── regexSelected.svg │ │ │ ├── relevantProposal.svg │ │ │ ├── replace.svg │ │ │ ├── replace_dark.svg │ │ │ ├── rerun.svg │ │ │ ├── rerun_dark.svg │ │ │ ├── reset.svg │ │ │ ├── reset_dark.svg │ │ │ ├── revert.svg │ │ │ ├── revert_dark.svg │ │ │ ├── running.svg │ │ │ ├── savedContext.svg │ │ │ ├── search.svg │ │ │ ├── section.svg │ │ │ ├── settings.svg │ │ │ ├── settings_dark.svg │ │ │ ├── shield.svg │ │ │ ├── sortBySeverity.svg │ │ │ ├── sortBySeverity_dark.svg │ │ │ ├── start.svg │ │ │ ├── startDebugger.svg │ │ │ ├── startDebugger_dark.svg │ │ │ ├── stopRefresh.svg │ │ │ ├── stopRefresh_dark.svg │ │ │ ├── suspend.svg │ │ │ ├── suspend_dark.svg │ │ │ ├── swiftPackage.svg │ │ │ ├── targetTest.svg │ │ │ ├── template.svg │ │ │ ├── tip.svg │ │ │ ├── tip_dark.svg │ │ │ ├── toggleSoftWrap.svg │ │ │ ├── toggleSoftWrap_dark.svg │ │ │ ├── treemap.svg │ │ │ ├── undo.svg │ │ │ ├── undo_dark.svg │ │ │ ├── upload.svg │ │ │ ├── upload_dark.svg │ │ │ ├── users.svg │ │ │ ├── users_dark.svg │ │ │ ├── windows.svg │ │ │ ├── words.svg │ │ │ └── wordsSelected.svg │ │ │ ├── log4j.properties │ │ │ ├── raw.jpg │ │ │ ├── settings.json │ │ │ ├── splashscreen │ │ │ └── splashscreen.png │ │ │ ├── terminal.properties │ │ │ └── theme │ │ │ ├── 3024 Day.json │ │ │ ├── 3024 Night.json │ │ │ ├── AdventureTime.json │ │ │ ├── Afterglow.json │ │ │ ├── AlienBlood.json │ │ │ ├── Argonaut.json │ │ │ ├── Arthur.json │ │ │ ├── AtelierSulphurpool.json │ │ │ ├── Atom.json │ │ │ ├── AtomOneLight.json │ │ │ ├── Batman.json │ │ │ ├── Belafonte Day.json │ │ │ ├── Belafonte Night.json │ │ │ ├── BirdsOfParadise.json │ │ │ ├── Borland.json │ │ │ ├── Broadcast.json │ │ │ ├── Brogrammer.json │ │ │ ├── CLRS.json │ │ │ ├── Chalkboard.json │ │ │ ├── Ciapre.json │ │ │ ├── Cobalt Neon.json │ │ │ ├── Cobalt2.json │ │ │ ├── CrayonPonyFish.json │ │ │ ├── Darkside.json │ │ │ ├── Default.json │ │ │ ├── DimmedMonokai.json │ │ │ ├── DotGov.json │ │ │ ├── Dracula.json │ │ │ ├── Duotone Dark.json │ │ │ ├── Earthsong.json │ │ │ ├── Elemental.json │ │ │ ├── Espresso.json │ │ │ ├── FirefoxDev.json │ │ │ ├── Firewatch.json │ │ │ ├── Flat.json │ │ │ ├── Flatland.json │ │ │ ├── ForestBlue.json │ │ │ ├── FrontEndDelight.json │ │ │ ├── FunForrest.json │ │ │ ├── Galaxy.json │ │ │ ├── Github.json │ │ │ ├── Glacier.json │ │ │ ├── Grape.json │ │ │ ├── Grass.json │ │ │ ├── Gruvbox Dark.json │ │ │ ├── Hardcore.json │ │ │ ├── Harper.json │ │ │ ├── Highway.json │ │ │ ├── Hipster Green.json │ │ │ ├── Homebrew.json │ │ │ ├── Hybrid.json │ │ │ ├── IC_Green_PPL.json │ │ │ ├── IC_Orange_PPL.json │ │ │ ├── Jackie Brown.json │ │ │ ├── Japanesque.json │ │ │ ├── Jellybeans.json │ │ │ ├── JetBrains Darcula.json │ │ │ ├── Kibble.json │ │ │ ├── Later This Evening.json │ │ │ ├── Lavandula.json │ │ │ ├── Man Page.json │ │ │ ├── Material.json │ │ │ ├── Mathias.json │ │ │ ├── Medallion.json │ │ │ ├── Misterioso.json │ │ │ ├── Monokai Soda.json │ │ │ ├── N0tch2k.json │ │ │ ├── Neopolitan.json │ │ │ ├── Neutron.json │ │ │ ├── Novel.json │ │ │ ├── Obsidian.json │ │ │ ├── Ocean.json │ │ │ ├── Ollie.json │ │ │ ├── Pandora.json │ │ │ ├── Parasio Dark.json │ │ │ ├── PaulMillr.json │ │ │ ├── PencilLight.json │ │ │ ├── Piatto Light.json │ │ │ ├── Pnevma.json │ │ │ ├── Pro.json │ │ │ ├── Red Alert.json │ │ │ ├── Red Sands.json │ │ │ ├── Rippedcasts.json │ │ │ ├── Royal.json │ │ │ ├── Ryuuko.json │ │ │ ├── SeaShells.json │ │ │ ├── Seti.json │ │ │ ├── Slate.json │ │ │ ├── Smyck.json │ │ │ ├── SoftServer.json │ │ │ ├── Solarized Darcula.json │ │ │ ├── Solarized Dark - Patched.json │ │ │ ├── Solarized Dark Higher Contrast.json │ │ │ ├── Solarized Dark.json │ │ │ ├── Solarized Light.json │ │ │ ├── SpaceGray Eighties Dull.json │ │ │ ├── SpaceGray Eighties.json │ │ │ ├── SpaceGray.json │ │ │ ├── Spacedust.json │ │ │ ├── Spiderman.json │ │ │ ├── Spring.json │ │ │ ├── Square.json │ │ │ ├── Sundried.json │ │ │ ├── Symfonic.json │ │ │ ├── Teerb.json │ │ │ ├── Terminal Basic.json │ │ │ ├── Thayer Bright.json │ │ │ ├── The Hulk.json │ │ │ ├── Tomorrow Night Blue.json │ │ │ ├── Tomorrow Night Bright.json │ │ │ ├── Tomorrow Night Eighties.json │ │ │ ├── Tomorrow Night.json │ │ │ ├── Tomorrow.json │ │ │ ├── ToyChest.json │ │ │ ├── Twilight.json │ │ │ ├── WarmNeon.json │ │ │ ├── Wez.json │ │ │ ├── WildCherry.json │ │ │ ├── Wombat.json │ │ │ ├── Wryan.json │ │ │ ├── Zenburn.json │ │ │ ├── ayu.json │ │ │ ├── ayu_light.json │ │ │ ├── colorschemes.txt │ │ │ └── idleToes.json │ └── test │ │ └── java │ │ ├── ShadowTextPanel.java │ │ ├── TestBuiltInDefaultIconExample.java │ │ ├── TestCommandInjection.java │ │ ├── TestHumanEye.java │ │ ├── TestMutilFont.java │ │ ├── TestRegx.java │ │ ├── TestSystemIcon.java │ │ └── TestUnZip.java └── ultimate-app.iml └── ultimate-editor ├── README.md ├── buildNumber.properties ├── dependency-reduced-pom.xml ├── pom.xml ├── pom.xml.versionsBackup ├── src ├── main │ ├── java │ │ └── com │ │ │ └── g3g4x5x6 │ │ │ ├── EditorApp.java │ │ │ └── editor │ │ │ ├── EditorFrame.java │ │ │ ├── EditorPanel.java │ │ │ ├── provider │ │ │ ├── BashCompletionProvider.java │ │ │ └── JavaCompletionProvider.java │ │ │ ├── ui │ │ │ ├── StatusBar.java │ │ │ └── icon │ │ │ │ ├── AccentColorIcon.java │ │ │ │ └── SizeGripIcon.java │ │ │ └── util │ │ │ ├── EditorConfig.java │ │ │ └── EditorUtil.java │ └── resources │ │ ├── editor.properties │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── icons │ │ ├── Administrator.svg │ │ ├── BrowserSystemDefault(GrayDark).svg │ │ ├── MarkdownPlugin.svg │ │ ├── OpenTerminal_13x13.svg │ │ ├── OpenTerminal_13x13_dark.svg │ │ ├── RecentlyUsed.svg │ │ ├── Save.svg │ │ ├── ShowRecentTabStripItems(Color).svg │ │ ├── Target.svg │ │ ├── TargetR.svg │ │ ├── activity.svg │ │ ├── add.svg │ │ ├── addFile.svg │ │ ├── addFile_dark.svg │ │ ├── addList.svg │ │ ├── addList_dark.svg │ │ ├── addToDictionary.svg │ │ ├── addToDictionary_dark.svg │ │ ├── add_dark.svg │ │ ├── analyzer.svg │ │ ├── applicationExtension.svg │ │ ├── applicationExtension_dark.svg │ │ ├── asm.svg │ │ ├── buildLoadChanges.svg │ │ ├── changeView.svg │ │ ├── changeView_dark.svg │ │ ├── chromium.svg │ │ ├── close.svg │ │ ├── closeHover.svg │ │ ├── colors.svg │ │ ├── colors_dark.svg │ │ ├── commit.svg │ │ ├── connector.svg │ │ ├── console.svg │ │ ├── console_dark.svg │ │ ├── converter.svg │ │ ├── copy.svg │ │ ├── copy_dark.svg │ │ ├── cyan-dot.svg │ │ ├── delete.svg │ │ ├── diff.svg │ │ ├── digitalOceanSpaces.svg │ │ ├── digitalOceanSpaces_dark.svg │ │ ├── editScheme.svg │ │ ├── editScheme_dark.svg │ │ ├── editSource.svg │ │ ├── editSource_dark.svg │ │ ├── end.svg │ │ ├── execute.svg │ │ ├── execute_dark.svg │ │ ├── export.svg │ │ ├── export_dark.svg │ │ ├── extensionRunConfiguration.svg │ │ ├── eye.svg │ │ ├── file-add-any.svg │ │ ├── file-archive.svg │ │ ├── file-as.svg │ │ ├── file-aspectj.svg │ │ ├── file-config.svg │ │ ├── file-css.svg │ │ ├── file-custom.svg │ │ ├── file-diagram.svg │ │ ├── file-dtd.svg │ │ ├── file-go.svg │ │ ├── file-gql.svg │ │ ├── file-htaccess.svg │ │ ├── file-html.svg │ │ ├── file-idl.svg │ │ ├── file-java-class.svg │ │ ├── file-java-outside-source.svg │ │ ├── file-java.svg │ │ ├── file-js.svg │ │ ├── file-json-dark.svg │ │ ├── file-json-schema-dark.svg │ │ ├── file-json-schema.svg │ │ ├── file-json.svg │ │ ├── file-jsp.svg │ │ ├── file-jspx.svg │ │ ├── file-kotlin.svg │ │ ├── file-manifest.svg │ │ ├── file-properties.svg │ │ ├── file-python.svg │ │ ├── file-regexp.svg │ │ ├── file-text.svg │ │ ├── file-ts.svg │ │ ├── file-tsx.svg │ │ ├── file-ui-form.svg │ │ ├── file-unknown.svg │ │ ├── file-wsdl.svg │ │ ├── file-xhtml.svg │ │ ├── file-xml.svg │ │ ├── file-xsd.svg │ │ ├── file-yaml.svg │ │ ├── file.svg │ │ ├── fileTransfer.svg │ │ ├── fileTransfer_dark.svg │ │ ├── find.svg │ │ ├── find_dark.svg │ │ ├── fitContent.svg │ │ ├── fitContent_dark.svg │ │ ├── folders.svg │ │ ├── folders_dark.svg │ │ ├── goldKey.svg │ │ ├── green.svg │ │ ├── homeFolder.svg │ │ ├── homeFolder_dark.svg │ │ ├── htaccess.svg │ │ ├── ideUpdate.svg │ │ ├── ideUpdate_dark.svg │ │ ├── ignore_file.svg │ │ ├── ignore_file_dark.svg │ │ ├── import.svg │ │ ├── import_dark.svg │ │ ├── inspectionsOK.svg │ │ ├── inspectionsOK_dark.svg │ │ ├── intersystemCache.svg │ │ ├── intersystemCache_dark.svg │ │ ├── linux.svg │ │ ├── list.svg │ │ ├── listFiles.svg │ │ ├── listFiles_dark.svg │ │ ├── lock.svg │ │ ├── lock_dark.svg │ │ ├── macOS.svg │ │ ├── matchCase.svg │ │ ├── matchCaseSelected.svg │ │ ├── menu-cut.svg │ │ ├── menu-cut_dark.svg │ │ ├── menu-open.svg │ │ ├── menu-open_dark.svg │ │ ├── menu-paste.svg │ │ ├── menu-paste_dark.svg │ │ ├── menu-saveall.svg │ │ ├── menu-saveall_dark.svg │ │ ├── newFolder.svg │ │ ├── newFolder_dark.svg │ │ ├── nextOccurence.svg │ │ ├── nextOccurence_dark.svg │ │ ├── pinTab.svg │ │ ├── pluginIcon.svg │ │ ├── previousOccurence.svg │ │ ├── previousOccurence_dark.svg │ │ ├── project.svg │ │ ├── redo.svg │ │ ├── redo_dark.svg │ │ ├── refresh.svg │ │ ├── refresh_dark.svg │ │ ├── regex.svg │ │ ├── regexSelected.svg │ │ ├── relevantProposal.svg │ │ ├── replace.svg │ │ ├── replace_dark.svg │ │ ├── savedContext.svg │ │ ├── search.svg │ │ ├── shield.svg │ │ ├── sortBySeverity.svg │ │ ├── sortBySeverity_dark.svg │ │ ├── startDebugger.svg │ │ ├── startDebugger_dark.svg │ │ ├── swiftPackage.svg │ │ ├── targetTest.svg │ │ ├── template.svg │ │ ├── toggleSoftWrap.svg │ │ ├── toggleSoftWrap_dark.svg │ │ ├── treemap.svg │ │ ├── undo.svg │ │ ├── undo_dark.svg │ │ ├── windows.svg │ │ ├── words.svg │ │ └── wordsSelected.svg │ │ └── log4j.properties └── test │ └── java │ └── EditorDemo.java └── ultimate-editor.iml /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request: {} 3 | push: 4 | branches: 5 | - main 6 | - master 7 | name: Semgrep 8 | jobs: 9 | semgrep: 10 | name: Scan 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: returntocorp/semgrep-action@v1 15 | with: 16 | publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} 17 | -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- 1 | name: Publish to WinGet 2 | on: 3 | release: 4 | types: [released] 5 | jobs: 6 | publish: 7 | # Action can only be run on windows 8 | runs-on: windows-latest 9 | steps: 10 | - uses: vedantmgoyal2009/winget-releaser@latest 11 | with: 12 | identifier: G3G4X5X6.ultimate-cube 13 | token: ${{ secrets.WINGET_TOKEN }} 14 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /build/bin/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/build/bin/icon.ico -------------------------------------------------------------------------------- /build/bin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/build/bin/icon.png -------------------------------------------------------------------------------- /build/bin/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/build/bin/splashscreen.png -------------------------------------------------------------------------------- /buildNumber.properties: -------------------------------------------------------------------------------- 1 | #maven.buildNumber.plugin properties file 2 | #Mon Jul 08 09:25:22 CST 2024 3 | buildNumber=144 4 | -------------------------------------------------------------------------------- /doc/img/1_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/1_quick.png -------------------------------------------------------------------------------- /doc/img/2_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/2_ssh.png -------------------------------------------------------------------------------- /doc/img/3_sftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/3_sftp.png -------------------------------------------------------------------------------- /doc/img/4_create_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/4_create_session.png -------------------------------------------------------------------------------- /doc/img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img.png -------------------------------------------------------------------------------- /doc/img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img_1.png -------------------------------------------------------------------------------- /doc/img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img_2.png -------------------------------------------------------------------------------- /doc/img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img_3.png -------------------------------------------------------------------------------- /doc/img/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img_4.png -------------------------------------------------------------------------------- /doc/img/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/img_5.png -------------------------------------------------------------------------------- /doc/img/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/doc/img/splashscreen.png -------------------------------------------------------------------------------- /libs/jediterm-core-3.44-SNAPSHOT-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/libs/jediterm-core-3.44-SNAPSHOT-sources.jar -------------------------------------------------------------------------------- /libs/jediterm-core-3.44-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/libs/jediterm-core-3.44-SNAPSHOT.jar -------------------------------------------------------------------------------- /libs/jediterm-ui-3.44-SNAPSHOT-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/libs/jediterm-ui-3.44-SNAPSHOT-sources.jar -------------------------------------------------------------------------------- /libs/jediterm-ui-3.44-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/libs/jediterm-ui-3.44-SNAPSHOT.jar -------------------------------------------------------------------------------- /libs/tightvnc-jviewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/libs/tightvnc-jviewer.jar -------------------------------------------------------------------------------- /prepare.bat: -------------------------------------------------------------------------------- 1 | mvn install:install-file -Dfile=libs/tightvnc-jviewer.jar -DgroupId=com.g3g4x5x6 -DartifactId=tightvnc-jviewer -Dversion=2.8.3 -Dpackaging=jar 2 | mvn install:install-file -Dfile=libs/jediterm-core-3.20-SNAPSHOT.jar -DgroupId=com.jediterm -DartifactId=jediterm-core -Dversion=3.20-SNAPSHOT -Dpackaging=jar 3 | mvn install:install-file -Dfile=libs/jediterm-ui-3.20-SNAPSHOT.jar -DgroupId=com.jediterm -DartifactId=jediterm-ui -Dversion=3.20-SNAPSHOT -Dpackaging=jar 4 | -------------------------------------------------------------------------------- /ultimate-app/buildNumber.properties: -------------------------------------------------------------------------------- 1 | #maven.buildNumber.plugin properties file 2 | #Mon Jul 08 09:25:33 CST 2024 3 | buildNumber=180 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/java-templates/com/g3g4x5x6/Version.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6; 2 | 3 | public final class Version { 4 | /** 5 | * project version 6 | */ 7 | public static final String VERSION = "${project.version}"; 8 | /** 9 | * build number 10 | */ 11 | public static final String BUILD_NUMBER = "${buildNumber}"; 12 | /** 13 | * build timestamp 14 | */ 15 | public static final String BUILD_TIMESTAMP = "${buildTimestamp}"; 16 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/java/com/g3g4x5x6/exception/UserStopException.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6.exception; 2 | 3 | public class UserStopException extends Exception { 4 | public UserStopException(String message) { 5 | super(message); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/java/com/g3g4x5x6/settings/SettingsInterface.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6.settings; 2 | 3 | public interface SettingsInterface { 4 | public void save(); 5 | } 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/java/com/g3g4x5x6/ui/ToolBar.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6.ui; 2 | 3 | 4 | import javax.swing.*; 5 | 6 | public class ToolBar extends JToolBar { 7 | 8 | public ToolBar(){ 9 | this.setOrientation(JToolBar.HORIZONTAL); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ultimate-app/src/main/java/com/g3g4x5x6/user/git/Workspace.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6.user.git; 2 | 3 | public class Workspace { 4 | } 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/java/com/g3g4x5x6/utils/os/OsType.java: -------------------------------------------------------------------------------- 1 | package com.g3g4x5x6.utils.os; 2 | 3 | public enum OsType { 4 | 5 | Linux("Linux"), Mac_OS("Mac OS"), Mac_OS_X("Mac OS X"), Windows("Windows"); 6 | 7 | private OsType(String desc) { 8 | this.description = desc; 9 | } 10 | 11 | public String toString() { 12 | return description; 13 | } 14 | 15 | private String description; 16 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/app.png -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/fonts/JetBrainsMono/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/fonts/JetBrainsMono/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/fonts/JetBrainsMono/JetBrainsMonoNL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/fonts/JetBrainsMono/JetBrainsMonoNL-Regular.ttf -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/fonts/SarasaMono-TTF-1.0.13/SarasaMonoSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/fonts/SarasaMono-TTF-1.0.13/SarasaMonoSC-Regular.ttf -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/icon.ico -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/icon.png -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/OpenTerminal_13x13.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/OpenTerminal_13x13_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/TestExecutionStatus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addFile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addFile_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addList.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addList_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addToDictionary.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/addToDictionary_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/add_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/balloonError.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/balloonError_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cancel.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cancel_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/changeView.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/closeHover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/colors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/colors_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/commit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/console.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/consoleRun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/consoleRun_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/console_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/copy_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmPermissions.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmPermissions_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmScreenOff.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmScreenOff_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmScreenOn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cwmScreenOn_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/cyan-dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/deleteHovered.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/download_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/execute.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/execute_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/exit_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/experimentalFeatures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/experimentalFeatures_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-add-any.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-diagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-html.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-properties.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-ui-form.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-xhtml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file-xml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/fileTransfer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/fileTransfer_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/folders.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/folders_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/goldKey.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/groups.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/groups_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/history.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/history_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/homeFolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/homeFolder_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/ideUpdate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/ideUpdate_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/import_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/info_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/informationDialog.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/informationDialog_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/inspectionsOK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/inspectionsOK_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/intentionBulbGrey.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/intersystemCache.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/intersystemCache_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/lightning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/lightning_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/list.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/listFiles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/listFiles_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-open_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-paste.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-paste_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-saveall.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/menu-saveall_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/moduleDirectory.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/moduleDirectory_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/newFolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/newFolder_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/passwordField.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/pinTab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/project.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/relevantProposal.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/rerun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/rerun_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/running.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/savedContext.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/suspend.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/suspend_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/swiftPackage.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/template.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/treemap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/undo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/undo_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/upload_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/words.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/icons/wordsSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/raw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/raw.jpg -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/settings.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "puttygen", 4 | "category": "putty", 5 | "platform": "Windows", 6 | "workdir": "%InstallPath%\\PuTTY", 7 | "start": "%InstallPath%\\PuTTY\\puttygen.exe" 8 | }, 9 | { 10 | "name": "putty", 11 | "category": "putty", 12 | "platform": "Windows", 13 | "workdir": "%InstallPath%\\PuTTY", 14 | "start": "%InstallPath%\\PuTTY\\putty.exe" 15 | } 16 | ] 17 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/splashscreen/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/splashscreen/splashscreen.png -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/terminal.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-app/src/main/resources/terminal.properties -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/3024 Day.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#090300", 4 | "#db2d20", 5 | "#01a252", 6 | "#fded02", 7 | "#01a0e4", 8 | "#a16a94", 9 | "#b5e4f4", 10 | "#a5a2a2", 11 | "#5c5855", 12 | "#e8bbd0", 13 | "#3a3432", 14 | "#4a4543", 15 | "#807d7c", 16 | "#d6d5d4", 17 | "#cdab53", 18 | "#f7f7f7" 19 | ], 20 | "background_color": "#f7f7f7", 21 | "cursor_color": "#4a4543", 22 | "foreground_color": "#4a4543", 23 | "selected_color": "#a5a2a2" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/3024 Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#090300", 4 | "#db2d20", 5 | "#01a252", 6 | "#fded02", 7 | "#01a0e4", 8 | "#a16a94", 9 | "#b5e4f4", 10 | "#a5a2a2", 11 | "#5c5855", 12 | "#e8bbd0", 13 | "#3a3432", 14 | "#4a4543", 15 | "#807d7c", 16 | "#d6d5d4", 17 | "#cdab53", 18 | "#f7f7f7" 19 | ], 20 | "background_color": "#090300", 21 | "cursor_color": "#a5a2a2", 22 | "foreground_color": "#a5a2a2", 23 | "selected_color": "#4a4543" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/AdventureTime.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#050404", 4 | "#bd0013", 5 | "#4ab118", 6 | "#e7741e", 7 | "#0f4ac6", 8 | "#665993", 9 | "#70a598", 10 | "#f8dcc0", 11 | "#4e7cbf", 12 | "#fc5f5a", 13 | "#9eff6e", 14 | "#efc11a", 15 | "#1997c6", 16 | "#9b5953", 17 | "#c8faf4", 18 | "#f6f5fb" 19 | ], 20 | "background_color": "#1f1d45", 21 | "cursor_color": "#efbf38", 22 | "foreground_color": "#f8dcc0", 23 | "selected_color": "#706b4e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Afterglow.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#151515", 4 | "#ac4142", 5 | "#7e8e50", 6 | "#e5b567", 7 | "#6c99bb", 8 | "#9f4e85", 9 | "#7dd6cf", 10 | "#d0d0d0", 11 | "#505050", 12 | "#ac4142", 13 | "#7e8e50", 14 | "#e5b567", 15 | "#6c99bb", 16 | "#9f4e85", 17 | "#7dd6cf", 18 | "#f5f5f5" 19 | ], 20 | "background_color": "#212121", 21 | "cursor_color": "#d0d0d0", 22 | "foreground_color": "#d0d0d0", 23 | "selected_color": "#303030" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/AlienBlood.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#112616", 4 | "#7f2b27", 5 | "#2f7e25", 6 | "#717f24", 7 | "#2f6a7f", 8 | "#47587f", 9 | "#327f77", 10 | "#647d75", 11 | "#3c4812", 12 | "#e08009", 13 | "#18e000", 14 | "#bde000", 15 | "#00aae0", 16 | "#0058e0", 17 | "#00e0c4", 18 | "#73fa91" 19 | ], 20 | "background_color": "#0f1610", 21 | "cursor_color": "#73fa91", 22 | "foreground_color": "#637d75", 23 | "selected_color": "#1d4125" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Argonaut.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#232323", 4 | "#ff000f", 5 | "#8ce10b", 6 | "#ffb900", 7 | "#008df8", 8 | "#6d43a6", 9 | "#00d8eb", 10 | "#ffffff", 11 | "#444444", 12 | "#ff2740", 13 | "#abe15b", 14 | "#ffd242", 15 | "#0092ff", 16 | "#9a5feb", 17 | "#67fff0", 18 | "#ffffff" 19 | ], 20 | "background_color": "#0e1019", 21 | "cursor_color": "#ff0018", 22 | "foreground_color": "#fffaf4", 23 | "selected_color": "#002a3b" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Arthur.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#3d352a", 4 | "#cd5c5c", 5 | "#86af80", 6 | "#e8ae5b", 7 | "#6495ed", 8 | "#deb887", 9 | "#b0c4de", 10 | "#bbaa99", 11 | "#554444", 12 | "#cc5533", 13 | "#88aa22", 14 | "#ffa75d", 15 | "#87ceeb", 16 | "#996600", 17 | "#b0c4de", 18 | "#ddccbb" 19 | ], 20 | "background_color": "#1c1c1c", 21 | "cursor_color": "#e2bbef", 22 | "foreground_color": "#ddeedd", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/AtelierSulphurpool.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#202746", 4 | "#c94922", 5 | "#ac9739", 6 | "#c08b30", 7 | "#3d8fd1", 8 | "#6679cc", 9 | "#22a2c9", 10 | "#979db4", 11 | "#6b7394", 12 | "#c76b29", 13 | "#293256", 14 | "#5e6687", 15 | "#898ea4", 16 | "#dfe2f1", 17 | "#9c637a", 18 | "#f5f7ff" 19 | ], 20 | "background_color": "#202746", 21 | "cursor_color": "#979db4", 22 | "foreground_color": "#979db4", 23 | "selected_color": "#5e6687" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Atom.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#fd5ff1", 5 | "#87c38a", 6 | "#ffd7b1", 7 | "#85befd", 8 | "#b9b6fc", 9 | "#85befd", 10 | "#e0e0e0", 11 | "#000000", 12 | "#fd5ff1", 13 | "#94fa36", 14 | "#f5ffa8", 15 | "#96cbfe", 16 | "#b9b6fc", 17 | "#85befd", 18 | "#e0e0e0" 19 | ], 20 | "background_color": "#161719", 21 | "cursor_color": "#d0d0d0", 22 | "foreground_color": "#c5c8c6", 23 | "selected_color": "#444444" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/AtomOneLight.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#de3e35", 5 | "#3f953a", 6 | "#d2b67c", 7 | "#2f5af3", 8 | "#950095", 9 | "#3f953a", 10 | "#bbbbbb", 11 | "#000000", 12 | "#de3e35", 13 | "#3f953a", 14 | "#d2b67c", 15 | "#2f5af3", 16 | "#a00095", 17 | "#3f953a", 18 | "#ffffff" 19 | ], 20 | "background_color": "#f9f9f9", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#2a2c33", 23 | "selected_color": "#ededed" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Batman.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1b1d1e", 4 | "#e6dc44", 5 | "#c8be46", 6 | "#f4fd22", 7 | "#737174", 8 | "#747271", 9 | "#62605f", 10 | "#c6c5bf", 11 | "#505354", 12 | "#fff78e", 13 | "#fff27d", 14 | "#feed6c", 15 | "#919495", 16 | "#9a9a9d", 17 | "#a3a3a6", 18 | "#dadbd6" 19 | ], 20 | "background_color": "#1b1d1e", 21 | "cursor_color": "#fcef0c", 22 | "foreground_color": "#6f6f6f", 23 | "selected_color": "#4d504c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Belafonte Day.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#20111b", 4 | "#be100e", 5 | "#858162", 6 | "#eaa549", 7 | "#426a79", 8 | "#97522c", 9 | "#989a9c", 10 | "#968c83", 11 | "#5e5252", 12 | "#be100e", 13 | "#858162", 14 | "#eaa549", 15 | "#426a79", 16 | "#97522c", 17 | "#989a9c", 18 | "#d5ccba" 19 | ], 20 | "background_color": "#d5ccba", 21 | "cursor_color": "#45373c", 22 | "foreground_color": "#45373c", 23 | "selected_color": "#968c83" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Belafonte Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#20111b", 4 | "#be100e", 5 | "#858162", 6 | "#eaa549", 7 | "#426a79", 8 | "#97522c", 9 | "#989a9c", 10 | "#968c83", 11 | "#5e5252", 12 | "#be100e", 13 | "#858162", 14 | "#eaa549", 15 | "#426a79", 16 | "#97522c", 17 | "#989a9c", 18 | "#d5ccba" 19 | ], 20 | "background_color": "#20111b", 21 | "cursor_color": "#968c83", 22 | "foreground_color": "#968c83", 23 | "selected_color": "#45373c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/BirdsOfParadise.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#573d26", 4 | "#be2d26", 5 | "#6ba18a", 6 | "#e99d2a", 7 | "#5a86ad", 8 | "#ac80a6", 9 | "#74a6ad", 10 | "#e0dbb7", 11 | "#9b6c4a", 12 | "#e84627", 13 | "#95d8ba", 14 | "#d0d150", 15 | "#b8d3ed", 16 | "#d19ecb", 17 | "#93cfd7", 18 | "#fff9d5" 19 | ], 20 | "background_color": "#2a1f1d", 21 | "cursor_color": "#573d26", 22 | "foreground_color": "#e0dbb7", 23 | "selected_color": "#563c27" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Borland.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#4f4f4f", 4 | "#ff6c60", 5 | "#a8ff60", 6 | "#ffffb6", 7 | "#96cbfe", 8 | "#ff73fd", 9 | "#c6c5fe", 10 | "#eeeeee", 11 | "#7c7c7c", 12 | "#ffb6b0", 13 | "#ceffac", 14 | "#ffffcc", 15 | "#b5dcff", 16 | "#ff9cfe", 17 | "#dfdffe", 18 | "#ffffff" 19 | ], 20 | "background_color": "#0000a4", 21 | "cursor_color": "#ffa560", 22 | "foreground_color": "#ffff4e", 23 | "selected_color": "#a4a4a4" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Broadcast.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#da4939", 5 | "#519f50", 6 | "#ffd24a", 7 | "#6d9cbe", 8 | "#d0d0ff", 9 | "#6e9cbe", 10 | "#ffffff", 11 | "#323232", 12 | "#ff7b6b", 13 | "#83d182", 14 | "#ffff7c", 15 | "#9fcef0", 16 | "#ffffff", 17 | "#a0cef0", 18 | "#ffffff" 19 | ], 20 | "background_color": "#2b2b2b", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#e6e1dc", 23 | "selected_color": "#5a647e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Brogrammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1f1f1f", 4 | "#f81118", 5 | "#2dc55e", 6 | "#ecba0f", 7 | "#2a84d2", 8 | "#4e5ab7", 9 | "#1081d6", 10 | "#d6dbe5", 11 | "#d6dbe5", 12 | "#de352e", 13 | "#1dd361", 14 | "#f3bd09", 15 | "#1081d6", 16 | "#5350b9", 17 | "#0f7ddb", 18 | "#ffffff" 19 | ], 20 | "background_color": "#131313", 21 | "cursor_color": "#b9b9b9", 22 | "foreground_color": "#d6dbe5", 23 | "selected_color": "#1f1f1f" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/CLRS.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#f8282a", 5 | "#328a5d", 6 | "#fa701d", 7 | "#135cd0", 8 | "#9f00bd", 9 | "#33c3c1", 10 | "#b3b3b3", 11 | "#555753", 12 | "#fb0416", 13 | "#2cc631", 14 | "#fdd727", 15 | "#1670ff", 16 | "#e900b0", 17 | "#3ad5ce", 18 | "#eeeeec" 19 | ], 20 | "background_color": "#ffffff", 21 | "cursor_color": "#6fd3fc", 22 | "foreground_color": "#262626", 23 | "selected_color": "#6fd3fc" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Chalkboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#c37372", 5 | "#72c373", 6 | "#c2c372", 7 | "#7372c3", 8 | "#c372c2", 9 | "#72c2c3", 10 | "#d9d9d9", 11 | "#323232", 12 | "#dbaaaa", 13 | "#aadbaa", 14 | "#dadbaa", 15 | "#aaaadb", 16 | "#dbaada", 17 | "#aadadb", 18 | "#ffffff" 19 | ], 20 | "background_color": "#29262f", 21 | "cursor_color": "#d9e6f2", 22 | "foreground_color": "#d9e6f2", 23 | "selected_color": "#073642" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Ciapre.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#181818", 4 | "#810009", 5 | "#48513b", 6 | "#cc8b3f", 7 | "#576d8c", 8 | "#724d7c", 9 | "#5c4f4b", 10 | "#aea47f", 11 | "#555555", 12 | "#ac3835", 13 | "#a6a75d", 14 | "#dcdf7c", 15 | "#3097c6", 16 | "#d33061", 17 | "#f3dbb2", 18 | "#f4f4f4" 19 | ], 20 | "background_color": "#191c27", 21 | "cursor_color": "#92805b", 22 | "foreground_color": "#aea47a", 23 | "selected_color": "#172539" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Cobalt Neon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#142631", 4 | "#ff2320", 5 | "#3ba5ff", 6 | "#e9e75c", 7 | "#8ff586", 8 | "#781aa0", 9 | "#8ff586", 10 | "#ba46b2", 11 | "#fff688", 12 | "#d4312e", 13 | "#8ff586", 14 | "#e9f06d", 15 | "#3c7dd2", 16 | "#8230a7", 17 | "#6cbc67", 18 | "#8ff586" 19 | ], 20 | "background_color": "#142838", 21 | "cursor_color": "#c4206f", 22 | "foreground_color": "#8ff586", 23 | "selected_color": "#094fb1" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Cobalt2.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff0000", 5 | "#38de21", 6 | "#ffe50a", 7 | "#1460d2", 8 | "#ff005d", 9 | "#00bbbb", 10 | "#bbbbbb", 11 | "#555555", 12 | "#f40e17", 13 | "#3bd01d", 14 | "#edc809", 15 | "#5555ff", 16 | "#ff55ff", 17 | "#6ae3fa", 18 | "#ffffff" 19 | ], 20 | "background_color": "#132738", 21 | "cursor_color": "#f0cc09", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#18354f" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/CrayonPonyFish.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2b1b1d", 4 | "#91002b", 5 | "#579524", 6 | "#ab311b", 7 | "#8c87b0", 8 | "#692f50", 9 | "#e8a866", 10 | "#68525a", 11 | "#3d2b2e", 12 | "#c5255d", 13 | "#8dff57", 14 | "#c8381d", 15 | "#cfc9ff", 16 | "#fc6cba", 17 | "#ffceaf", 18 | "#b0949d" 19 | ], 20 | "background_color": "#150707", 21 | "cursor_color": "#68525a", 22 | "foreground_color": "#68525a", 23 | "selected_color": "#2b1b1d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Darkside.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#e8341c", 5 | "#68c256", 6 | "#f2d42c", 7 | "#1c98e8", 8 | "#8e69c9", 9 | "#1c98e8", 10 | "#bababa", 11 | "#000000", 12 | "#e05a4f", 13 | "#77b869", 14 | "#efd64b", 15 | "#387cd3", 16 | "#957bbe", 17 | "#3d97e2", 18 | "#bababa" 19 | ], 20 | "background_color": "#222324", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#bababa", 23 | "selected_color": "#303333" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Default.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#555555", 4 | "#ff2222", 5 | "#38de21", 6 | "#ffe50a", 7 | "#1460d2", 8 | "#ff005d", 9 | "#00bbbb", 10 | "#bbbbbb", 11 | "#555555", 12 | "#f40e17", 13 | "#3bd01d", 14 | "#edc809", 15 | "#5555ff", 16 | "#ff99ff", 17 | "#6ae3fa", 18 | "#ffffff" 19 | ], 20 | "background_color": "#002945", 21 | "cursor_color": "#00d05c", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#05609f" 24 | } 25 | 26 | 27 | -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/DimmedMonokai.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#3a3d43", 4 | "#be3f48", 5 | "#879a3b", 6 | "#c5a635", 7 | "#4f76a1", 8 | "#855c8d", 9 | "#578fa4", 10 | "#b9bcba", 11 | "#888987", 12 | "#fb001f", 13 | "#0f722f", 14 | "#c47033", 15 | "#186de3", 16 | "#fb0067", 17 | "#2e706d", 18 | "#fdffb9" 19 | ], 20 | "background_color": "#1f1f1f", 21 | "cursor_color": "#f83e19", 22 | "foreground_color": "#b9bcba", 23 | "selected_color": "#2a2d32" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/DotGov.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#191919", 4 | "#bf091d", 5 | "#3d9751", 6 | "#f6bb34", 7 | "#17b2e0", 8 | "#7830b0", 9 | "#8bd2ed", 10 | "#ffffff", 11 | "#191919", 12 | "#bf091d", 13 | "#3d9751", 14 | "#f6bb34", 15 | "#17b2e0", 16 | "#7830b0", 17 | "#8bd2ed", 18 | "#ffffff" 19 | ], 20 | "background_color": "#262c35", 21 | "cursor_color": "#d9002f", 22 | "foreground_color": "#ebebeb", 23 | "selected_color": "#1a4080" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Dracula.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff5555", 5 | "#50fa7b", 6 | "#f1fa8c", 7 | "#bd93f9", 8 | "#ff79c6", 9 | "#8be9fd", 10 | "#bbbbbb", 11 | "#555555", 12 | "#ff5555", 13 | "#50fa7b", 14 | "#f1fa8c", 15 | "#bd93f9", 16 | "#ff79c6", 17 | "#8be9fd", 18 | "#ffffff" 19 | ], 20 | "background_color": "#1e1f29", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#f8f8f2", 23 | "selected_color": "#44475a" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Duotone Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1f1d27", 4 | "#d9393e", 5 | "#2dcd73", 6 | "#d9b76e", 7 | "#ffc284", 8 | "#de8d40", 9 | "#2488ff", 10 | "#b7a1ff", 11 | "#353147", 12 | "#d9393e", 13 | "#2dcd73", 14 | "#d9b76e", 15 | "#ffc284", 16 | "#de8d40", 17 | "#2488ff", 18 | "#eae5ff" 19 | ], 20 | "background_color": "#1f1d27", 21 | "cursor_color": "#ff9839", 22 | "foreground_color": "#b7a1ff", 23 | "selected_color": "#353147" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Earthsong.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#121418", 4 | "#c94234", 5 | "#85c54c", 6 | "#f5ae2e", 7 | "#1398b9", 8 | "#d0633d", 9 | "#509552", 10 | "#e5c6aa", 11 | "#675f54", 12 | "#ff645a", 13 | "#98e036", 14 | "#e0d561", 15 | "#5fdaff", 16 | "#ff9269", 17 | "#84f088", 18 | "#f6f7ec" 19 | ], 20 | "background_color": "#292520", 21 | "cursor_color": "#f6f7ec", 22 | "foreground_color": "#e5c7a9", 23 | "selected_color": "#121418" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Elemental.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#3c3c30", 4 | "#98290f", 5 | "#479a43", 6 | "#7f7111", 7 | "#497f7d", 8 | "#7f4e2f", 9 | "#387f58", 10 | "#807974", 11 | "#555445", 12 | "#e0502a", 13 | "#61e070", 14 | "#d69927", 15 | "#79d9d9", 16 | "#cd7c54", 17 | "#59d599", 18 | "#fff1e9" 19 | ], 20 | "background_color": "#22211d", 21 | "cursor_color": "#facb80", 22 | "foreground_color": "#807a74", 23 | "selected_color": "#413829" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Espresso.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#353535", 4 | "#d25252", 5 | "#a5c261", 6 | "#ffc66d", 7 | "#6c99bb", 8 | "#d197d9", 9 | "#bed6ff", 10 | "#eeeeec", 11 | "#535353", 12 | "#f00c0c", 13 | "#c2e075", 14 | "#e1e48b", 15 | "#8ab7d9", 16 | "#efb5f7", 17 | "#dcf4ff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#323232", 21 | "cursor_color": "#d6d6d6", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#5b5b5b" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/FirefoxDev.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#002831", 4 | "#e63853", 5 | "#5eb83c", 6 | "#a57706", 7 | "#359ddf", 8 | "#d75cff", 9 | "#4b73a2", 10 | "#dcdcdc", 11 | "#001e27", 12 | "#e1003f", 13 | "#1d9000", 14 | "#cd9409", 15 | "#006fc0", 16 | "#a200da", 17 | "#005794", 18 | "#e2e2e2" 19 | ], 20 | "background_color": "#0e1011", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#7c8fa4", 23 | "selected_color": "#163c61" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Firewatch.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#585f6d", 4 | "#d95360", 5 | "#5ab977", 6 | "#dfb563", 7 | "#4d89c4", 8 | "#d55119", 9 | "#44a8b6", 10 | "#e6e5ff", 11 | "#585f6d", 12 | "#d95360", 13 | "#5ab977", 14 | "#dfb563", 15 | "#4c89c5", 16 | "#d55119", 17 | "#44a8b6", 18 | "#e6e5ff" 19 | ], 20 | "background_color": "#1e2027", 21 | "cursor_color": "#f6f7ec", 22 | "foreground_color": "#9ba2b2", 23 | "selected_color": "#2f363e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Flat.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#222d3f", 4 | "#a82320", 5 | "#32a548", 6 | "#e58d11", 7 | "#3167ac", 8 | "#781aa0", 9 | "#2c9370", 10 | "#b0b6ba", 11 | "#212c3c", 12 | "#d4312e", 13 | "#2d9440", 14 | "#e5be0c", 15 | "#3c7dd2", 16 | "#8230a7", 17 | "#35b387", 18 | "#e7eced" 19 | ], 20 | "background_color": "#002240", 21 | "cursor_color": "#e5be0c", 22 | "foreground_color": "#2cc55d", 23 | "selected_color": "#792b9c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Flatland.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1d1d19", 4 | "#f18339", 5 | "#9fd364", 6 | "#f4ef6d", 7 | "#5096be", 8 | "#695abc", 9 | "#d63865", 10 | "#ffffff", 11 | "#1d1d19", 12 | "#d22a24", 13 | "#a7d42c", 14 | "#ff8949", 15 | "#61b9d0", 16 | "#695abc", 17 | "#d63865", 18 | "#ffffff" 19 | ], 20 | "background_color": "#1d1f21", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#b8dbef", 23 | "selected_color": "#2b2a24" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/ForestBlue.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#333333", 4 | "#f8818e", 5 | "#92d3a2", 6 | "#1a8e63", 7 | "#8ed0ce", 8 | "#5e468c", 9 | "#31658c", 10 | "#e2d8cd", 11 | "#3d3d3d", 12 | "#fb3d66", 13 | "#6bb48d", 14 | "#30c85a", 15 | "#39a7a2", 16 | "#7e62b3", 17 | "#6096bf", 18 | "#e2d8cd" 19 | ], 20 | "background_color": "#051519", 21 | "cursor_color": "#9e9ecb", 22 | "foreground_color": "#e2d8cd", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/FrontEndDelight.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#242526", 4 | "#f8511b", 5 | "#565747", 6 | "#fa771d", 7 | "#2c70b7", 8 | "#f02e4f", 9 | "#3ca1a6", 10 | "#adadad", 11 | "#5fac6d", 12 | "#f74319", 13 | "#74ec4c", 14 | "#fdc325", 15 | "#3393ca", 16 | "#e75e4f", 17 | "#4fbce6", 18 | "#8c735b" 19 | ], 20 | "background_color": "#1b1c1d", 21 | "cursor_color": "#cdcdcd", 22 | "foreground_color": "#adadad", 23 | "selected_color": "#ea6154" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/FunForrest.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#d6262b", 5 | "#919c00", 6 | "#be8a13", 7 | "#4699a3", 8 | "#8d4331", 9 | "#da8213", 10 | "#ddc265", 11 | "#7f6a55", 12 | "#e55a1c", 13 | "#bfc65a", 14 | "#ffcb1b", 15 | "#7cc9cf", 16 | "#d26349", 17 | "#e6a96b", 18 | "#ffeaa3" 19 | ], 20 | "background_color": "#251200", 21 | "cursor_color": "#e5591c", 22 | "foreground_color": "#dec165", 23 | "selected_color": "#e5591c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Galaxy.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#f9555f", 5 | "#21b089", 6 | "#fef02a", 7 | "#589df6", 8 | "#944d95", 9 | "#1f9ee7", 10 | "#bbbbbb", 11 | "#555555", 12 | "#fa8c8f", 13 | "#35bb9a", 14 | "#ffff55", 15 | "#589df6", 16 | "#e75699", 17 | "#3979bc", 18 | "#ffffff" 19 | ], 20 | "background_color": "#1d2837", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#b5d5ff" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Github.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#3e3e3e", 4 | "#970b16", 5 | "#07962a", 6 | "#f8eec7", 7 | "#003e8a", 8 | "#e94691", 9 | "#89d1ec", 10 | "#ffffff", 11 | "#666666", 12 | "#de0000", 13 | "#87d5a2", 14 | "#f1d007", 15 | "#2e6cba", 16 | "#ffa29f", 17 | "#1cfafe", 18 | "#ffffff" 19 | ], 20 | "background_color": "#f4f4f4", 21 | "cursor_color": "#3f3f3f", 22 | "foreground_color": "#3e3e3e", 23 | "selected_color": "#a9c1e2" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Glacier.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2e343c", 4 | "#bd0f2f", 5 | "#35a770", 6 | "#fb9435", 7 | "#1f5872", 8 | "#bd2523", 9 | "#778397", 10 | "#ffffff", 11 | "#404a55", 12 | "#bd0f2f", 13 | "#49e998", 14 | "#fddf6e", 15 | "#2a8bc1", 16 | "#ea4727", 17 | "#a0b6d3", 18 | "#ffffff" 19 | ], 20 | "background_color": "#0c1115", 21 | "cursor_color": "#6c6c6c", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#bd2523" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Grape.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2d283f", 4 | "#ed2261", 5 | "#1fa91b", 6 | "#8ddc20", 7 | "#487df4", 8 | "#8d35c9", 9 | "#3bdeed", 10 | "#9e9ea0", 11 | "#59516a", 12 | "#f0729a", 13 | "#53aa5e", 14 | "#b2dc87", 15 | "#a9bcec", 16 | "#ad81c2", 17 | "#9de3eb", 18 | "#a288f7" 19 | ], 20 | "background_color": "#171423", 21 | "cursor_color": "#a288f7", 22 | "foreground_color": "#9f9fa1", 23 | "selected_color": "#493d70" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#bb0000", 5 | "#00bb00", 6 | "#e7b000", 7 | "#0000a3", 8 | "#950062", 9 | "#00bbbb", 10 | "#bbbbbb", 11 | "#555555", 12 | "#bb0000", 13 | "#00bb00", 14 | "#e7b000", 15 | "#0000bb", 16 | "#ff55ff", 17 | "#55ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#13773d", 21 | "cursor_color": "#8c2800", 22 | "foreground_color": "#fff0a5", 23 | "selected_color": "#b64926" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Gruvbox Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#161819", 4 | "#f73028", 5 | "#aab01e", 6 | "#f7b125", 7 | "#719586", 8 | "#c77089", 9 | "#7db669", 10 | "#faefbb", 11 | "#7f7061", 12 | "#be0f17", 13 | "#868715", 14 | "#cc881a", 15 | "#377375", 16 | "#a04b73", 17 | "#578e57", 18 | "#e6d4a3" 19 | ], 20 | "background_color": "#1e1e1e", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#e6d4a3", 23 | "selected_color": "#685c51" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Hardcore.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1b1d1e", 4 | "#f92672", 5 | "#a6e22e", 6 | "#fd971f", 7 | "#66d9ef", 8 | "#9e6ffe", 9 | "#5e7175", 10 | "#ccccc6", 11 | "#505354", 12 | "#ff669d", 13 | "#beed5f", 14 | "#e6db74", 15 | "#66d9ef", 16 | "#9e6ffe", 17 | "#a3babf", 18 | "#f8f8f2" 19 | ], 20 | "background_color": "#121212", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#a0a0a0", 23 | "selected_color": "#453b39" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Harper.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#010101", 4 | "#f8b63f", 5 | "#7fb5e1", 6 | "#d6da25", 7 | "#489e48", 8 | "#b296c6", 9 | "#f5bfd7", 10 | "#a8a49d", 11 | "#726e6a", 12 | "#f8b63f", 13 | "#7fb5e1", 14 | "#d6da25", 15 | "#489e48", 16 | "#b296c6", 17 | "#f5bfd7", 18 | "#fefbea" 19 | ], 20 | "background_color": "#010101", 21 | "cursor_color": "#a8a49d", 22 | "foreground_color": "#a8a49d", 23 | "selected_color": "#5a5753" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Highway.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#d00e18", 5 | "#138034", 6 | "#ffcb3e", 7 | "#006bb3", 8 | "#6b2775", 9 | "#384564", 10 | "#ededed", 11 | "#5d504a", 12 | "#f07e18", 13 | "#b1d130", 14 | "#fff120", 15 | "#4fc2fd", 16 | "#de0071", 17 | "#5d504a", 18 | "#ffffff" 19 | ], 20 | "background_color": "#222225", 21 | "cursor_color": "#e0d9b9", 22 | "foreground_color": "#ededed", 23 | "selected_color": "#384564" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Hipster Green.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#b6214a", 5 | "#00a600", 6 | "#bfbf00", 7 | "#246eb2", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#86a93e", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#100b05", 21 | "cursor_color": "#23ff18", 22 | "foreground_color": "#84c138", 23 | "selected_color": "#083905" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Homebrew.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#990000", 5 | "#00a600", 6 | "#999900", 7 | "#0000b2", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#00d900", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#23ff18", 22 | "foreground_color": "#00ff00", 23 | "selected_color": "#083905" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Hybrid.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2a2e33", 4 | "#b84d51", 5 | "#b3bf5a", 6 | "#e4b55e", 7 | "#6e90b0", 8 | "#a17eac", 9 | "#7fbfb4", 10 | "#b5b9b6", 11 | "#1d1f22", 12 | "#8d2e32", 13 | "#798431", 14 | "#e58a50", 15 | "#4b6b88", 16 | "#6e5079", 17 | "#4d7b74", 18 | "#5a626a" 19 | ], 20 | "background_color": "#161719", 21 | "cursor_color": "#b7bcba", 22 | "foreground_color": "#b7bcba", 23 | "selected_color": "#1e1f22" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/IC_Green_PPL.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1f1f1f", 4 | "#fb002a", 5 | "#339c24", 6 | "#659b25", 7 | "#149b45", 8 | "#53b82c", 9 | "#2cb868", 10 | "#e0ffef", 11 | "#032710", 12 | "#a7ff3f", 13 | "#9fff6d", 14 | "#d2ff6d", 15 | "#72ffb5", 16 | "#50ff3e", 17 | "#22ff71", 18 | "#daefd0" 19 | ], 20 | "background_color": "#3a3d3f", 21 | "cursor_color": "#42ff58", 22 | "foreground_color": "#d9efd3", 23 | "selected_color": "#2b9b35" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/IC_Orange_PPL.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#c13900", 5 | "#a4a900", 6 | "#caaf00", 7 | "#bd6d00", 8 | "#fc5e00", 9 | "#f79500", 10 | "#ffc88a", 11 | "#6a4f2a", 12 | "#ff8c68", 13 | "#f6ff40", 14 | "#ffe36e", 15 | "#ffbe55", 16 | "#fc874f", 17 | "#c69752", 18 | "#fafaff" 19 | ], 20 | "background_color": "#262626", 21 | "cursor_color": "#fc531d", 22 | "foreground_color": "#ffcb83", 23 | "selected_color": "#c14020" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Jackie Brown.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2c1d16", 4 | "#ef5734", 5 | "#2baf2b", 6 | "#bebf00", 7 | "#246eb2", 8 | "#d05ec1", 9 | "#00acee", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#86a93e", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#2c1d16", 21 | "cursor_color": "#23ff18", 22 | "foreground_color": "#ffcc2f", 23 | "selected_color": "#af8d21" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Japanesque.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#343935", 4 | "#cf3f61", 5 | "#7bb75b", 6 | "#e9b32a", 7 | "#4c9ad4", 8 | "#a57fc4", 9 | "#389aad", 10 | "#fafaf6", 11 | "#595b59", 12 | "#d18fa6", 13 | "#767f2c", 14 | "#78592f", 15 | "#135979", 16 | "#604291", 17 | "#76bbca", 18 | "#b2b5ae" 19 | ], 20 | "background_color": "#1e1e1e", 21 | "cursor_color": "#edcf4f", 22 | "foreground_color": "#f7f6ec", 23 | "selected_color": "#175877" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Jellybeans.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#929292", 4 | "#e27373", 5 | "#94b979", 6 | "#ffba7b", 7 | "#97bedc", 8 | "#e1c0fa", 9 | "#00988e", 10 | "#dedede", 11 | "#bdbdbd", 12 | "#ffa1a1", 13 | "#bddeab", 14 | "#ffdca0", 15 | "#b1d8f6", 16 | "#fbdaff", 17 | "#1ab2a8", 18 | "#ffffff" 19 | ], 20 | "background_color": "#121212", 21 | "cursor_color": "#ffa560", 22 | "foreground_color": "#dedede", 23 | "selected_color": "#474e91" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/JetBrains Darcula.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#fa5355", 5 | "#126e00", 6 | "#c2c300", 7 | "#4581eb", 8 | "#fa54ff", 9 | "#33c2c1", 10 | "#adadad", 11 | "#555555", 12 | "#fb7172", 13 | "#67ff4f", 14 | "#ffff00", 15 | "#6d9df1", 16 | "#fb82ff", 17 | "#60d3d1", 18 | "#eeeeee" 19 | ], 20 | "background_color": "#202020", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#adadad", 23 | "selected_color": "#1a3272" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Kibble.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#4d4d4d", 4 | "#c70031", 5 | "#29cf13", 6 | "#d8e30e", 7 | "#3449d1", 8 | "#8400ff", 9 | "#0798ab", 10 | "#e2d1e3", 11 | "#5a5a5a", 12 | "#f01578", 13 | "#6ce05c", 14 | "#f3f79e", 15 | "#97a4f7", 16 | "#c495f0", 17 | "#68f2e0", 18 | "#ffffff" 19 | ], 20 | "background_color": "#0e100a", 21 | "cursor_color": "#9fda9c", 22 | "foreground_color": "#f7f7f7", 23 | "selected_color": "#9ba787" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Later This Evening.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2b2b2b", 4 | "#d45a60", 5 | "#afba67", 6 | "#e5d289", 7 | "#a0bad6", 8 | "#c092d6", 9 | "#91bfb7", 10 | "#3c3d3d", 11 | "#454747", 12 | "#d3232f", 13 | "#aabb39", 14 | "#e5be39", 15 | "#6699d6", 16 | "#ab53d6", 17 | "#5fc0ae", 18 | "#c1c2c2" 19 | ], 20 | "background_color": "#222222", 21 | "cursor_color": "#424242", 22 | "foreground_color": "#959595", 23 | "selected_color": "#424242" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Lavandula.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#230046", 4 | "#7d1625", 5 | "#337e6f", 6 | "#7f6f49", 7 | "#4f4a7f", 8 | "#5a3f7f", 9 | "#58777f", 10 | "#736e7d", 11 | "#372d46", 12 | "#e05167", 13 | "#52e0c4", 14 | "#e0c386", 15 | "#8e87e0", 16 | "#a776e0", 17 | "#9ad4e0", 18 | "#8c91fa" 19 | ], 20 | "background_color": "#050014", 21 | "cursor_color": "#8c91fa", 22 | "foreground_color": "#736e7d", 23 | "selected_color": "#37323c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Man Page.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#cc0000", 5 | "#00a600", 6 | "#999900", 7 | "#0000b2", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#cccccc", 11 | "#666666", 12 | "#e50000", 13 | "#00d900", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#fef49c", 21 | "cursor_color": "#7f7f7f", 22 | "foreground_color": "#000000", 23 | "selected_color": "#a4c9cd" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Material.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#212121", 4 | "#b7141f", 5 | "#457b24", 6 | "#f6981e", 7 | "#134eb2", 8 | "#560088", 9 | "#0e717c", 10 | "#efefef", 11 | "#424242", 12 | "#e83b3f", 13 | "#7aba3a", 14 | "#ffea2e", 15 | "#54a4f3", 16 | "#aa4dbc", 17 | "#26bbd1", 18 | "#d9d9d9" 19 | ], 20 | "background_color": "#eaeaea", 21 | "cursor_color": "#16afca", 22 | "foreground_color": "#232322", 23 | "selected_color": "#c2c2c2" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Mathias.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#e52222", 5 | "#a6e32d", 6 | "#fc951e", 7 | "#c48dff", 8 | "#fa2573", 9 | "#67d9f0", 10 | "#f2f2f2", 11 | "#555555", 12 | "#ff5555", 13 | "#55ff55", 14 | "#ffff55", 15 | "#5555ff", 16 | "#ff55ff", 17 | "#55ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#bbbbbb", 23 | "selected_color": "#555555" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Medallion.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#b64c00", 5 | "#7c8b16", 6 | "#d3bd26", 7 | "#616bb0", 8 | "#8c5a90", 9 | "#916c25", 10 | "#cac29a", 11 | "#5e5219", 12 | "#ff9149", 13 | "#b2ca3b", 14 | "#ffe54a", 15 | "#acb8ff", 16 | "#ffa0ff", 17 | "#ffbc51", 18 | "#fed698" 19 | ], 20 | "background_color": "#1d1908", 21 | "cursor_color": "#d3ba30", 22 | "foreground_color": "#cac296", 23 | "selected_color": "#626dac" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Misterioso.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff4242", 5 | "#74af68", 6 | "#ffad29", 7 | "#338f86", 8 | "#9414e6", 9 | "#23d7d7", 10 | "#e1e1e0", 11 | "#555555", 12 | "#ff3242", 13 | "#74cd68", 14 | "#ffb929", 15 | "#23d7d7", 16 | "#ff37ff", 17 | "#00ede1", 18 | "#ffffff" 19 | ], 20 | "background_color": "#2d3743", 21 | "cursor_color": "#000000", 22 | "foreground_color": "#e1e1e0", 23 | "selected_color": "#2d37ff" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Monokai Soda.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1a1a1a", 4 | "#f4005f", 5 | "#98e024", 6 | "#fa8419", 7 | "#9d65ff", 8 | "#f4005f", 9 | "#58d1eb", 10 | "#c4c5b5", 11 | "#625e4c", 12 | "#f4005f", 13 | "#98e024", 14 | "#e0d561", 15 | "#9d65ff", 16 | "#f4005f", 17 | "#58d1eb", 18 | "#f6f6ef" 19 | ], 20 | "background_color": "#1a1a1a", 21 | "cursor_color": "#f6f7ec", 22 | "foreground_color": "#c4c5b5", 23 | "selected_color": "#343434" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/N0tch2k.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#383838", 4 | "#a95551", 5 | "#666666", 6 | "#a98051", 7 | "#657d3e", 8 | "#767676", 9 | "#c9c9c9", 10 | "#d0b8a3", 11 | "#474747", 12 | "#a97775", 13 | "#8c8c8c", 14 | "#a99175", 15 | "#98bd5e", 16 | "#a3a3a3", 17 | "#dcdcdc", 18 | "#d8c8bb" 19 | ], 20 | "background_color": "#222222", 21 | "cursor_color": "#aa9175", 22 | "foreground_color": "#a0a0a0", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Neopolitan.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#800000", 5 | "#61ce3c", 6 | "#fbde2d", 7 | "#253b76", 8 | "#ff0080", 9 | "#8da6ce", 10 | "#f8f8f8", 11 | "#000000", 12 | "#800000", 13 | "#61ce3c", 14 | "#fbde2d", 15 | "#253b76", 16 | "#ff0080", 17 | "#8da6ce", 18 | "#f8f8f8" 19 | ], 20 | "background_color": "#271f19", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#253b76" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Neutron.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#23252b", 4 | "#b54036", 5 | "#5ab977", 6 | "#deb566", 7 | "#6a7c93", 8 | "#a4799d", 9 | "#3f94a8", 10 | "#e6e8ef", 11 | "#23252b", 12 | "#b54036", 13 | "#5ab977", 14 | "#deb566", 15 | "#6a7c93", 16 | "#a4799d", 17 | "#3f94a8", 18 | "#ebedf2" 19 | ], 20 | "background_color": "#1c1e22", 21 | "cursor_color": "#f6f7ec", 22 | "foreground_color": "#e6e8ef", 23 | "selected_color": "#2f363e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Novel.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#cc0000", 5 | "#009600", 6 | "#d06b00", 7 | "#0000cc", 8 | "#cc00cc", 9 | "#0087cc", 10 | "#cccccc", 11 | "#808080", 12 | "#cc0000", 13 | "#009600", 14 | "#d06b00", 15 | "#0000cc", 16 | "#cc00cc", 17 | "#0087cc", 18 | "#ffffff" 19 | ], 20 | "background_color": "#dfdbc3", 21 | "cursor_color": "#73635a", 22 | "foreground_color": "#3b2322", 23 | "selected_color": "#a4a390" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#a60001", 5 | "#00bb00", 6 | "#fecd22", 7 | "#3a9bdb", 8 | "#bb00bb", 9 | "#00bbbb", 10 | "#bbbbbb", 11 | "#555555", 12 | "#ff0003", 13 | "#93c863", 14 | "#fef874", 15 | "#a1d7ff", 16 | "#ff55ff", 17 | "#55ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#283033", 21 | "cursor_color": "#c0cad0", 22 | "foreground_color": "#cdcdcd", 23 | "selected_color": "#3e4c4f" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#990000", 5 | "#00a600", 6 | "#999900", 7 | "#0000b2", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#00d900", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#224fbc", 21 | "cursor_color": "#7f7f7f", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#216dff" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Ollie.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ac2e31", 5 | "#31ac61", 6 | "#ac4300", 7 | "#2d57ac", 8 | "#b08528", 9 | "#1fa6ac", 10 | "#8a8eac", 11 | "#5b3725", 12 | "#ff3d48", 13 | "#3bff99", 14 | "#ff5e1e", 15 | "#4488ff", 16 | "#ffc21d", 17 | "#1ffaff", 18 | "#5b6ea7" 19 | ], 20 | "background_color": "#222125", 21 | "cursor_color": "#5b6ea7", 22 | "foreground_color": "#8a8dae", 23 | "selected_color": "#1e3a66" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Pandora.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff4242", 5 | "#74af68", 6 | "#ffad29", 7 | "#338f86", 8 | "#9414e6", 9 | "#23d7d7", 10 | "#e2e2e2", 11 | "#3f5648", 12 | "#ff3242", 13 | "#74cd68", 14 | "#ffb929", 15 | "#23d7d7", 16 | "#ff37ff", 17 | "#00ede1", 18 | "#ffffff" 19 | ], 20 | "background_color": "#141e43", 21 | "cursor_color": "#43d58e", 22 | "foreground_color": "#e1e1e1", 23 | "selected_color": "#2d37ff" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Parasio Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2f1e2e", 4 | "#ef6155", 5 | "#48b685", 6 | "#fec418", 7 | "#06b6ef", 8 | "#815ba4", 9 | "#5bc4bf", 10 | "#a39e9b", 11 | "#776e71", 12 | "#ef6155", 13 | "#48b685", 14 | "#fec418", 15 | "#06b6ef", 16 | "#815ba4", 17 | "#5bc4bf", 18 | "#e7e9db" 19 | ], 20 | "background_color": "#2f1e2e", 21 | "cursor_color": "#a39e9b", 22 | "foreground_color": "#a39e9b", 23 | "selected_color": "#4f424c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/PaulMillr.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2a2a2a", 4 | "#ff0000", 5 | "#79ff0f", 6 | "#e7bf00", 7 | "#396bd7", 8 | "#b449be", 9 | "#66ccff", 10 | "#bbbbbb", 11 | "#666666", 12 | "#ff0080", 13 | "#66ff66", 14 | "#f3d64e", 15 | "#709aed", 16 | "#db67e6", 17 | "#7adff2", 18 | "#ffffff" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#4d4d4d", 22 | "foreground_color": "#f2f2f2", 23 | "selected_color": "#414141" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/PencilLight.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#212121", 4 | "#c30771", 5 | "#10a778", 6 | "#a89c14", 7 | "#008ec4", 8 | "#523c79", 9 | "#20a5ba", 10 | "#d9d9d9", 11 | "#424242", 12 | "#fb007a", 13 | "#5fd7af", 14 | "#f3e430", 15 | "#20bbfc", 16 | "#6855de", 17 | "#4fb8cc", 18 | "#f1f1f1" 19 | ], 20 | "background_color": "#f1f1f1", 21 | "cursor_color": "#20bbfc", 22 | "foreground_color": "#424242", 23 | "selected_color": "#b6d6fd" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Piatto Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#414141", 4 | "#b23771", 5 | "#66781e", 6 | "#cd6f34", 7 | "#3c5ea8", 8 | "#a454b2", 9 | "#66781e", 10 | "#ffffff", 11 | "#3f3f3f", 12 | "#db3365", 13 | "#829429", 14 | "#cd6f34", 15 | "#3c5ea8", 16 | "#a454b2", 17 | "#829429", 18 | "#f2f2f2" 19 | ], 20 | "background_color": "#ffffff", 21 | "cursor_color": "#5e77c8", 22 | "foreground_color": "#414141", 23 | "selected_color": "#706b4e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Pnevma.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2f2e2d", 4 | "#a36666", 5 | "#90a57d", 6 | "#d7af87", 7 | "#7fa5bd", 8 | "#c79ec4", 9 | "#8adbb4", 10 | "#d0d0d0", 11 | "#4a4845", 12 | "#d78787", 13 | "#afbea2", 14 | "#e4c9af", 15 | "#a1bdce", 16 | "#d7beda", 17 | "#b1e7dd", 18 | "#efefef" 19 | ], 20 | "background_color": "#1c1c1c", 21 | "cursor_color": "#e4c9af", 22 | "foreground_color": "#d0d0d0", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Pro.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#990000", 5 | "#00a600", 6 | "#999900", 7 | "#2009db", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#00d900", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#4d4d4d", 22 | "foreground_color": "#f2f2f2", 23 | "selected_color": "#414141" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Red Alert.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#d62e4e", 5 | "#71be6b", 6 | "#beb86b", 7 | "#489bee", 8 | "#e979d7", 9 | "#6bbeb8", 10 | "#d6d6d6", 11 | "#262626", 12 | "#e02553", 13 | "#aff08c", 14 | "#dfddb7", 15 | "#65aaf1", 16 | "#ddb7df", 17 | "#b7dfdd", 18 | "#ffffff" 19 | ], 20 | "background_color": "#762423", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#073642" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Red Sands.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff3f00", 5 | "#00bb00", 6 | "#e7b000", 7 | "#0072ff", 8 | "#bb00bb", 9 | "#00bbbb", 10 | "#bbbbbb", 11 | "#555555", 12 | "#bb0000", 13 | "#00bb00", 14 | "#e7b000", 15 | "#0072ae", 16 | "#ff55ff", 17 | "#55ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#7a251e", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#d7c9a7", 23 | "selected_color": "#a4a390" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Rippedcasts.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#cdaf95", 5 | "#a8ff60", 6 | "#bfbb1f", 7 | "#75a5b0", 8 | "#ff73fd", 9 | "#5a647e", 10 | "#bfbfbf", 11 | "#666666", 12 | "#eecbad", 13 | "#bcee68", 14 | "#e5e500", 15 | "#86bdc9", 16 | "#e500e5", 17 | "#8c9bc4", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#2b2b2b", 21 | "cursor_color": "#7f7f7f", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#5a647e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Royal.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#241f2b", 4 | "#91284c", 5 | "#23801c", 6 | "#b49d27", 7 | "#6580b0", 8 | "#674d96", 9 | "#8aaabe", 10 | "#524966", 11 | "#312d3d", 12 | "#d5356c", 13 | "#2cd946", 14 | "#fde83b", 15 | "#90baf9", 16 | "#a479e3", 17 | "#acd4eb", 18 | "#9e8cbd" 19 | ], 20 | "background_color": "#100815", 21 | "cursor_color": "#524966", 22 | "foreground_color": "#514968", 23 | "selected_color": "#1f1d2b" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Ryuuko.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2c3941", 4 | "#865f5b", 5 | "#66907d", 6 | "#b1a990", 7 | "#6a8e95", 8 | "#b18a73", 9 | "#88b2ac", 10 | "#ececec", 11 | "#5d7079", 12 | "#865f5b", 13 | "#66907d", 14 | "#b1a990", 15 | "#6a8e95", 16 | "#b18a73", 17 | "#88b2ac", 18 | "#ececec" 19 | ], 20 | "background_color": "#2c3941", 21 | "cursor_color": "#ececec", 22 | "foreground_color": "#ececec", 23 | "selected_color": "#002831" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/SeaShells.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#17384c", 4 | "#d15123", 5 | "#027c9b", 6 | "#fca02f", 7 | "#1e4950", 8 | "#68d4f1", 9 | "#50a3b5", 10 | "#deb88d", 11 | "#434b53", 12 | "#d48678", 13 | "#628d98", 14 | "#fdd39f", 15 | "#1bbcdd", 16 | "#bbe3ee", 17 | "#87acb4", 18 | "#fee4ce" 19 | ], 20 | "background_color": "#09141b", 21 | "cursor_color": "#fca02f", 22 | "foreground_color": "#deb88d", 23 | "selected_color": "#1e4962" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Seti.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#323232", 4 | "#c22832", 5 | "#8ec43d", 6 | "#e0c64f", 7 | "#43a5d5", 8 | "#8b57b5", 9 | "#8ec43d", 10 | "#eeeeee", 11 | "#323232", 12 | "#c22832", 13 | "#8ec43d", 14 | "#e0c64f", 15 | "#43a5d5", 16 | "#8b57b5", 17 | "#8ec43d", 18 | "#ffffff" 19 | ], 20 | "background_color": "#111213", 21 | "cursor_color": "#e3bf21", 22 | "foreground_color": "#cacecd", 23 | "selected_color": "#303233" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Slate.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#222222", 4 | "#e2a8bf", 5 | "#81d778", 6 | "#c4c9c0", 7 | "#264b49", 8 | "#a481d3", 9 | "#15ab9c", 10 | "#02c5e0", 11 | "#ffffff", 12 | "#ffcdd9", 13 | "#beffa8", 14 | "#d0ccca", 15 | "#7ab0d2", 16 | "#c5a7d9", 17 | "#8cdfe0", 18 | "#e0e0e0" 19 | ], 20 | "background_color": "#222222", 21 | "cursor_color": "#87d3c4", 22 | "foreground_color": "#35b1d2", 23 | "selected_color": "#0f3754" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Smyck.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#b84131", 5 | "#7da900", 6 | "#c4a500", 7 | "#62a3c4", 8 | "#ba8acc", 9 | "#207383", 10 | "#a1a1a1", 11 | "#7a7a7a", 12 | "#d6837c", 13 | "#c4f137", 14 | "#fee14d", 15 | "#8dcff0", 16 | "#f79aff", 17 | "#6ad9cf", 18 | "#f7f7f7" 19 | ], 20 | "background_color": "#1b1b1b", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#f7f7f7", 23 | "selected_color": "#207483" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/SoftServer.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#a2686a", 5 | "#9aa56a", 6 | "#a3906a", 7 | "#6b8fa3", 8 | "#6a71a3", 9 | "#6ba58f", 10 | "#99a3a2", 11 | "#666c6c", 12 | "#dd5c60", 13 | "#bfdf55", 14 | "#deb360", 15 | "#62b1df", 16 | "#606edf", 17 | "#64e39c", 18 | "#d2e0de" 19 | ], 20 | "background_color": "#242626", 21 | "cursor_color": "#d2e0de", 22 | "foreground_color": "#99a3a2", 23 | "selected_color": "#7f8786" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Solarized Darcula.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#25292a", 4 | "#f24840", 5 | "#629655", 6 | "#b68800", 7 | "#2075c7", 8 | "#797fd4", 9 | "#15968d", 10 | "#d2d8d9", 11 | "#25292a", 12 | "#f24840", 13 | "#629655", 14 | "#b68800", 15 | "#2075c7", 16 | "#797fd4", 17 | "#15968d", 18 | "#d2d8d9" 19 | ], 20 | "background_color": "#3d3f41", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#d2d8d9", 23 | "selected_color": "#214283" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Solarized Dark - Patched.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#002831", 4 | "#d11c24", 5 | "#738a05", 6 | "#a57706", 7 | "#2176c7", 8 | "#c61c6f", 9 | "#259286", 10 | "#eae3cb", 11 | "#475b62", 12 | "#bd3613", 13 | "#475b62", 14 | "#536870", 15 | "#708284", 16 | "#5956ba", 17 | "#819090", 18 | "#fcf4dc" 19 | ], 20 | "background_color": "#001e27", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#708284", 23 | "selected_color": "#002831" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Solarized Dark Higher Contrast.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#002831", 4 | "#d11c24", 5 | "#6cbe6c", 6 | "#a57706", 7 | "#2176c7", 8 | "#c61c6f", 9 | "#259286", 10 | "#eae3cb", 11 | "#006488", 12 | "#f5163b", 13 | "#51ef84", 14 | "#b27e28", 15 | "#178ec8", 16 | "#e24d8e", 17 | "#00b39e", 18 | "#fcf4dc" 19 | ], 20 | "background_color": "#001e27", 21 | "cursor_color": "#f34b00", 22 | "foreground_color": "#9cc2c3", 23 | "selected_color": "#003748" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Solarized Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#002831", 4 | "#d11c24", 5 | "#738a05", 6 | "#a57706", 7 | "#2176c7", 8 | "#c61c6f", 9 | "#259286", 10 | "#eae3cb", 11 | "#001e27", 12 | "#bd3613", 13 | "#475b62", 14 | "#536870", 15 | "#708284", 16 | "#5956ba", 17 | "#819090", 18 | "#fcf4dc" 19 | ], 20 | "background_color": "#001e27", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#708284", 23 | "selected_color": "#002831" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Solarized Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#002831", 4 | "#d11c24", 5 | "#738a05", 6 | "#a57706", 7 | "#2176c7", 8 | "#c61c6f", 9 | "#259286", 10 | "#eae3cb", 11 | "#001e27", 12 | "#bd3613", 13 | "#475b62", 14 | "#536870", 15 | "#708284", 16 | "#5956ba", 17 | "#819090", 18 | "#fcf4dc" 19 | ], 20 | "background_color": "#fcf4dc", 21 | "cursor_color": "#536870", 22 | "foreground_color": "#536870", 23 | "selected_color": "#eae3cb" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/SpaceGray Eighties Dull.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#15171c", 4 | "#b24a56", 5 | "#92b477", 6 | "#c6735a", 7 | "#7c8fa5", 8 | "#a5789e", 9 | "#80cdcb", 10 | "#b3b8c3", 11 | "#555555", 12 | "#ec5f67", 13 | "#89e986", 14 | "#fec254", 15 | "#5486c0", 16 | "#bf83c1", 17 | "#58c2c1", 18 | "#ffffff" 19 | ], 20 | "background_color": "#222222", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#c9c6bc", 23 | "selected_color": "#272e36" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/SpaceGray Eighties.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#15171c", 4 | "#ec5f67", 5 | "#81a764", 6 | "#fec254", 7 | "#5486c0", 8 | "#bf83c1", 9 | "#57c2c1", 10 | "#efece7", 11 | "#555555", 12 | "#ff6973", 13 | "#93d493", 14 | "#ffd256", 15 | "#4d84d1", 16 | "#ff55ff", 17 | "#83e9e4", 18 | "#ffffff" 19 | ], 20 | "background_color": "#222222", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#bdbaae", 23 | "selected_color": "#272e35" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/SpaceGray.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#b04b57", 5 | "#87b379", 6 | "#e5c179", 7 | "#7d8fa4", 8 | "#a47996", 9 | "#85a7a5", 10 | "#b3b8c3", 11 | "#000000", 12 | "#b04b57", 13 | "#87b379", 14 | "#e5c179", 15 | "#7d8fa4", 16 | "#a47996", 17 | "#85a7a5", 18 | "#ffffff" 19 | ], 20 | "background_color": "#20242d", 21 | "cursor_color": "#b3b8c3", 22 | "foreground_color": "#b3b8c3", 23 | "selected_color": "#16181e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Spacedust.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#6e5346", 4 | "#e35b00", 5 | "#5cab96", 6 | "#e3cd7b", 7 | "#0f548b", 8 | "#e35b00", 9 | "#06afc7", 10 | "#f0f1ce", 11 | "#684c31", 12 | "#ff8a3a", 13 | "#aecab8", 14 | "#ffc878", 15 | "#67a0ce", 16 | "#ff8a3a", 17 | "#83a7b4", 18 | "#fefff1" 19 | ], 20 | "background_color": "#0a1e24", 21 | "cursor_color": "#708284", 22 | "foreground_color": "#ecf0c1", 23 | "selected_color": "#0a385c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Spiderman.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1b1d1e", 4 | "#e60813", 5 | "#e22928", 6 | "#e24756", 7 | "#2c3fff", 8 | "#2435db", 9 | "#3256ff", 10 | "#fffef6", 11 | "#505354", 12 | "#ff0325", 13 | "#ff3338", 14 | "#fe3a35", 15 | "#1d50ff", 16 | "#747cff", 17 | "#6184ff", 18 | "#fffff9" 19 | ], 20 | "background_color": "#1b1d1e", 21 | "cursor_color": "#2c3fff", 22 | "foreground_color": "#e3e3e3", 23 | "selected_color": "#070e50" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Spring.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff4d83", 5 | "#1f8c3b", 6 | "#1fc95b", 7 | "#1dd3ee", 8 | "#8959a8", 9 | "#3e999f", 10 | "#ffffff", 11 | "#000000", 12 | "#ff0021", 13 | "#1fc231", 14 | "#d5b807", 15 | "#15a9fd", 16 | "#8959a8", 17 | "#3e999f", 18 | "#ffffff" 19 | ], 20 | "background_color": "#ffffff", 21 | "cursor_color": "#4d4d4c", 22 | "foreground_color": "#4d4d4c", 23 | "selected_color": "#d6d6d6" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Square.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#050505", 4 | "#e9897c", 5 | "#b6377d", 6 | "#ecebbe", 7 | "#a9cdeb", 8 | "#75507b", 9 | "#c9caec", 10 | "#f2f2f2", 11 | "#141414", 12 | "#f99286", 13 | "#c3f786", 14 | "#fcfbcc", 15 | "#b6defb", 16 | "#ad7fa8", 17 | "#d7d9fc", 18 | "#e2e2e2" 19 | ], 20 | "background_color": "#1a1a1a", 21 | "cursor_color": "#fcfbcc", 22 | "foreground_color": "#acacab", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Sundried.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#302b2a", 4 | "#a7463d", 5 | "#587744", 6 | "#9d602a", 7 | "#485b98", 8 | "#864651", 9 | "#9c814f", 10 | "#c9c9c9", 11 | "#4d4e48", 12 | "#aa000c", 13 | "#128c21", 14 | "#fc6a21", 15 | "#7999f7", 16 | "#fd8aa1", 17 | "#fad484", 18 | "#ffffff" 19 | ], 20 | "background_color": "#1a1818", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#c9c9c9", 23 | "selected_color": "#302b2a" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Symfonic.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#dc322f", 5 | "#56db3a", 6 | "#ff8400", 7 | "#0084d4", 8 | "#b729d9", 9 | "#ccccff", 10 | "#ffffff", 11 | "#1b1d21", 12 | "#dc322f", 13 | "#56db3a", 14 | "#ff8400", 15 | "#0084d4", 16 | "#b729d9", 17 | "#ccccff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#dc322f", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#073642" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Teerb.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1c1c1c", 4 | "#d68686", 5 | "#aed686", 6 | "#d7af87", 7 | "#86aed6", 8 | "#d6aed6", 9 | "#8adbb4", 10 | "#d0d0d0", 11 | "#1c1c1c", 12 | "#d68686", 13 | "#aed686", 14 | "#e4c9af", 15 | "#86aed6", 16 | "#d6aed6", 17 | "#b1e7dd", 18 | "#efefef" 19 | ], 20 | "background_color": "#262626", 21 | "cursor_color": "#e4c9af", 22 | "foreground_color": "#d0d0d0", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Terminal Basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#990000", 5 | "#00a600", 6 | "#999900", 7 | "#0000b2", 8 | "#b200b2", 9 | "#00a6b2", 10 | "#bfbfbf", 11 | "#666666", 12 | "#e50000", 13 | "#00d900", 14 | "#e5e500", 15 | "#0000ff", 16 | "#e500e5", 17 | "#00e5e5", 18 | "#e5e5e5" 19 | ], 20 | "background_color": "#ffffff", 21 | "cursor_color": "#7f7f7f", 22 | "foreground_color": "#000000", 23 | "selected_color": "#a4c9ff" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Thayer Bright.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1b1d1e", 4 | "#f92672", 5 | "#4df840", 6 | "#f4fd22", 7 | "#2757d6", 8 | "#8c54fe", 9 | "#38c8b5", 10 | "#ccccc6", 11 | "#505354", 12 | "#ff5995", 13 | "#b6e354", 14 | "#feed6c", 15 | "#3f78ff", 16 | "#9e6ffe", 17 | "#23cfd5", 18 | "#f8f8f2" 19 | ], 20 | "background_color": "#1b1d1e", 21 | "cursor_color": "#fc971f", 22 | "foreground_color": "#f8f8f8", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/The Hulk.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#1b1d1e", 4 | "#269d1b", 5 | "#13ce30", 6 | "#63e457", 7 | "#2525f5", 8 | "#641f74", 9 | "#378ca9", 10 | "#d9d8d1", 11 | "#505354", 12 | "#8dff2a", 13 | "#48ff77", 14 | "#3afe16", 15 | "#506b95", 16 | "#72589d", 17 | "#4085a6", 18 | "#e5e6e1" 19 | ], 20 | "background_color": "#1b1d1e", 21 | "cursor_color": "#16b61b", 22 | "foreground_color": "#b5b5b5", 23 | "selected_color": "#4d504c" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Tomorrow Night Blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff9da4", 5 | "#d1f1a9", 6 | "#ffeead", 7 | "#bbdaff", 8 | "#ebbbff", 9 | "#99ffff", 10 | "#ffffff", 11 | "#000000", 12 | "#ff9da4", 13 | "#d1f1a9", 14 | "#ffeead", 15 | "#bbdaff", 16 | "#ebbbff", 17 | "#99ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#002451", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#003f8e" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Tomorrow Night Bright.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#d54e53", 5 | "#b9ca4a", 6 | "#e7c547", 7 | "#7aa6da", 8 | "#c397d8", 9 | "#70c0b1", 10 | "#ffffff", 11 | "#000000", 12 | "#d54e53", 13 | "#b9ca4a", 14 | "#e7c547", 15 | "#7aa6da", 16 | "#c397d8", 17 | "#70c0b1", 18 | "#ffffff" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#eaeaea", 22 | "foreground_color": "#eaeaea", 23 | "selected_color": "#424242" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Tomorrow Night Eighties.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#f2777a", 5 | "#99cc99", 6 | "#ffcc66", 7 | "#6699cc", 8 | "#cc99cc", 9 | "#66cccc", 10 | "#ffffff", 11 | "#000000", 12 | "#f2777a", 13 | "#99cc99", 14 | "#ffcc66", 15 | "#6699cc", 16 | "#cc99cc", 17 | "#66cccc", 18 | "#ffffff" 19 | ], 20 | "background_color": "#2d2d2d", 21 | "cursor_color": "#cccccc", 22 | "foreground_color": "#cccccc", 23 | "selected_color": "#515151" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Tomorrow Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#cc6666", 5 | "#b5bd68", 6 | "#f0c674", 7 | "#81a2be", 8 | "#b294bb", 9 | "#8abeb7", 10 | "#ffffff", 11 | "#000000", 12 | "#cc6666", 13 | "#b5bd68", 14 | "#f0c674", 15 | "#81a2be", 16 | "#b294bb", 17 | "#8abeb7", 18 | "#ffffff" 19 | ], 20 | "background_color": "#1d1f21", 21 | "cursor_color": "#c5c8c6", 22 | "foreground_color": "#c5c8c6", 23 | "selected_color": "#373b41" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Tomorrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#c82829", 5 | "#718c00", 6 | "#eab700", 7 | "#4271ae", 8 | "#8959a8", 9 | "#3e999f", 10 | "#ffffff", 11 | "#000000", 12 | "#c82829", 13 | "#718c00", 14 | "#eab700", 15 | "#4271ae", 16 | "#8959a8", 17 | "#3e999f", 18 | "#ffffff" 19 | ], 20 | "background_color": "#ffffff", 21 | "cursor_color": "#4d4d4c", 22 | "foreground_color": "#4d4d4c", 23 | "selected_color": "#d6d6d6" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/ToyChest.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#2c3f58", 4 | "#be2d26", 5 | "#1a9172", 6 | "#db8e27", 7 | "#325d96", 8 | "#8a5edc", 9 | "#35a08f", 10 | "#23d183", 11 | "#336889", 12 | "#dd5944", 13 | "#31d07b", 14 | "#e7d84b", 15 | "#34a6da", 16 | "#ae6bdc", 17 | "#42c3ae", 18 | "#d5d5d5" 19 | ], 20 | "background_color": "#24364b", 21 | "cursor_color": "#d5d5d5", 22 | "foreground_color": "#31d07b", 23 | "selected_color": "#5f217a" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Twilight.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#141414", 4 | "#c06d44", 5 | "#afb97a", 6 | "#c2a86c", 7 | "#44474a", 8 | "#b4be7c", 9 | "#778385", 10 | "#ffffd4", 11 | "#262626", 12 | "#de7c4c", 13 | "#ccd88c", 14 | "#e2c47e", 15 | "#5a5e62", 16 | "#d0dc8e", 17 | "#8a989b", 18 | "#ffffd4" 19 | ], 20 | "background_color": "#141414", 21 | "cursor_color": "#ffffff", 22 | "foreground_color": "#ffffd4", 23 | "selected_color": "#313131" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/WarmNeon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#e24346", 5 | "#39b13a", 6 | "#dae145", 7 | "#4261c5", 8 | "#f920fb", 9 | "#2abbd4", 10 | "#d0b8a3", 11 | "#fefcfc", 12 | "#e97071", 13 | "#9cc090", 14 | "#ddda7a", 15 | "#7b91d6", 16 | "#f674ba", 17 | "#5ed1e5", 18 | "#d8c8bb" 19 | ], 20 | "background_color": "#404040", 21 | "cursor_color": "#30ff24", 22 | "foreground_color": "#afdab6", 23 | "selected_color": "#b0ad21" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Wez.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#cc5555", 5 | "#55cc55", 6 | "#cdcd55", 7 | "#5555cc", 8 | "#cc55cc", 9 | "#7acaca", 10 | "#cccccc", 11 | "#555555", 12 | "#ff5555", 13 | "#55ff55", 14 | "#ffff55", 15 | "#5555ff", 16 | "#ff55ff", 17 | "#55ffff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#000000", 21 | "cursor_color": "#53ae71", 22 | "foreground_color": "#b3b3b3", 23 | "selected_color": "#4d52f8" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/WildCherry.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000507", 4 | "#d94085", 5 | "#2ab250", 6 | "#ffd16f", 7 | "#883cdc", 8 | "#ececec", 9 | "#c1b8b7", 10 | "#fff8de", 11 | "#009cc9", 12 | "#da6bac", 13 | "#f4dca5", 14 | "#eac066", 15 | "#308cba", 16 | "#ae636b", 17 | "#ff919d", 18 | "#e4838d" 19 | ], 20 | "background_color": "#1f1726", 21 | "cursor_color": "#dd00ff", 22 | "foreground_color": "#dafaff", 23 | "selected_color": "#002831" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Wombat.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff615a", 5 | "#b1e969", 6 | "#ebd99c", 7 | "#5da9f6", 8 | "#e86aff", 9 | "#82fff7", 10 | "#dedacf", 11 | "#313131", 12 | "#f58c80", 13 | "#ddf88f", 14 | "#eee5b2", 15 | "#a5c7ff", 16 | "#ddaaff", 17 | "#b7fff9", 18 | "#ffffff" 19 | ], 20 | "background_color": "#171717", 21 | "cursor_color": "#bbbbbb", 22 | "foreground_color": "#dedacf", 23 | "selected_color": "#453b39" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Wryan.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#333333", 4 | "#8c4665", 5 | "#287373", 6 | "#7c7c99", 7 | "#395573", 8 | "#5e468c", 9 | "#31658c", 10 | "#899ca1", 11 | "#3d3d3d", 12 | "#bf4d80", 13 | "#53a6a6", 14 | "#9e9ecb", 15 | "#477ab3", 16 | "#7e62b3", 17 | "#6096bf", 18 | "#c0c0c0" 19 | ], 20 | "background_color": "#101010", 21 | "cursor_color": "#9e9ecb", 22 | "foreground_color": "#999993", 23 | "selected_color": "#4d4d4d" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/Zenburn.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#4d4d4d", 4 | "#705050", 5 | "#60b48a", 6 | "#f0dfaf", 7 | "#506070", 8 | "#dc8cc3", 9 | "#8cd0d3", 10 | "#dcdccc", 11 | "#709080", 12 | "#dca3a3", 13 | "#c3bf9f", 14 | "#e0cf9f", 15 | "#94bff3", 16 | "#ec93d3", 17 | "#93e0e3", 18 | "#ffffff" 19 | ], 20 | "background_color": "#3f3f3f", 21 | "cursor_color": "#73635a", 22 | "foreground_color": "#dcdccc", 23 | "selected_color": "#21322f" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/ayu.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff3333", 5 | "#b8cc52", 6 | "#e7c547", 7 | "#36a3d9", 8 | "#f07178", 9 | "#95e6cb", 10 | "#ffffff", 11 | "#323232", 12 | "#ff6565", 13 | "#eafe84", 14 | "#fff779", 15 | "#68d5ff", 16 | "#ffa3aa", 17 | "#c7fffd", 18 | "#ffffff" 19 | ], 20 | "background_color": "#0f1419", 21 | "cursor_color": "#f29718", 22 | "foreground_color": "#e6e1cf", 23 | "selected_color": "#253340" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/ayu_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#000000", 4 | "#ff3333", 5 | "#86b300", 6 | "#f29718", 7 | "#41a6d9", 8 | "#f07178", 9 | "#4dbf99", 10 | "#ffffff", 11 | "#323232", 12 | "#ff6565", 13 | "#b8e532", 14 | "#ffc94a", 15 | "#73d8ff", 16 | "#ffa3aa", 17 | "#7ff1cb", 18 | "#ffffff" 19 | ], 20 | "background_color": "#fafafa", 21 | "cursor_color": "#ff6a00", 22 | "foreground_color": "#5c6773", 23 | "selected_color": "#f0eee4" 24 | } -------------------------------------------------------------------------------- /ultimate-app/src/main/resources/theme/idleToes.json: -------------------------------------------------------------------------------- 1 | { 2 | "ansi_color": [ 3 | "#323232", 4 | "#d25252", 5 | "#7fe173", 6 | "#ffc66d", 7 | "#4099ff", 8 | "#f680ff", 9 | "#bed6ff", 10 | "#eeeeec", 11 | "#535353", 12 | "#f07070", 13 | "#9dff91", 14 | "#ffe48b", 15 | "#5eb7f7", 16 | "#ff9dff", 17 | "#dcf4ff", 18 | "#ffffff" 19 | ], 20 | "background_color": "#323232", 21 | "cursor_color": "#d6d6d6", 22 | "foreground_color": "#ffffff", 23 | "selected_color": "#5b5b5b" 24 | } -------------------------------------------------------------------------------- /ultimate-app/ultimate-app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/README.md: -------------------------------------------------------------------------------- 1 | # ultimate-editor 2 | > 编辑器子模块,提供文件编辑功能,可独立运行 -------------------------------------------------------------------------------- /ultimate-editor/buildNumber.properties: -------------------------------------------------------------------------------- 1 | #maven.buildNumber.plugin properties file 2 | #Mon Jul 08 09:25:26 CST 2024 3 | buildNumber=148 4 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/editor.properties: -------------------------------------------------------------------------------- 1 | # 简易编辑器配置 2 | editor.title=简易编辑器 3 | # default, dark, default-alt, druid, eclipse, idea, monokai, vs 4 | editor.theme=default -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-editor/src/main/resources/icon.ico -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3G4X5X6/ultimate-cube/db56189591a54455ec784aac02db8c46f7157c5a/ultimate-editor/src/main/resources/icon.png -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/OpenTerminal_13x13.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/OpenTerminal_13x13_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addFile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addFile_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addList.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addList_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addToDictionary.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/addToDictionary_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/add_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/applicationExtension.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/applicationExtension_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/changeView.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/closeHover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/colors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/colors_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/commit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/console.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/console_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/copy_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/cyan-dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/execute.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/execute_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/extensionRunConfiguration.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-add-any.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-html.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-properties.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-ui-form.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-xhtml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file-xml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/fileTransfer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/fileTransfer_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/folders.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/folders_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/goldKey.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/homeFolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/homeFolder_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/ideUpdate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/ideUpdate_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/import_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/inspectionsOK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/inspectionsOK_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/intersystemCache.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/intersystemCache_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/list.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/listFiles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/listFiles_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-open_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-paste.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-paste_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-saveall.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/menu-saveall_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/newFolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/newFolder_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/pinTab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/project.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/relevantProposal.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/savedContext.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/swiftPackage.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/template.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/treemap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/undo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/undo_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/words.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/src/main/resources/icons/wordsSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ultimate-editor/ultimate-editor.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | --------------------------------------------------------------------------------