Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
drahenprofi committed Nov 25, 2020
0 parents commit 5c4ac71
Show file tree
Hide file tree
Showing 8 changed files with 1,106 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# +-------------------+
# + Project Structure +
# +-------------------+
.idea/
out/

*.jar
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# JetBrains Horizon UI Theme

This is a port of the beautiful VSCode Horizon theme by [ jolaleye](https://github.com/jolaleye/horizon-theme-vscode) for JetBrains IDEAs. The syntax theme is a slightly adjusted version of the theme by [xShivan](https://github.com/xShivan/horizon-theme-jetbrains). The UI theme was written by myself.

## Screenshot

![Screenshot](screenshot.png)

13 changes: 13 additions & 0 deletions jetbrains-horizon.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PLUGIN_MODULE" version="4">
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/resources/META-INF/plugin.xml" />
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
41 changes: 41 additions & 0 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>de.parndt.jetbrains-horizon</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<name>Horizon Theme</name>

<!-- The version of this plugin -->
<version>0.1</version>

<!-- Compatible with the following versions of IntelliJ Platform:
version 2019.1 and newer. -->
<idea-version since-build="191"/>

<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>

<description>
<![CDATA[
IntelliJ Platform SDK code sample to illustrate creating <em>UI Themes</em>.
]]>
</description>
<change-notes>
<![CDATA[
<ul>
<li><b>0.1</b> Initial release. Basic theme functionality.</li>
</ul>
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<vendor url="https://github.com/arndtphillip">parndt</vendor>

<extensions defaultExtensionNs="com.intellij">
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="horizon.theme.json"/>
</extensions>

</idea-plugin>
58 changes: 58 additions & 0 deletions resources/META-INF/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5c4ac71

Please sign in to comment.