Skip to content

Commit

Permalink
Add project files
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanSoloweow committed Sep 8, 2020
1 parent cbd0dda commit e8779fc
Show file tree
Hide file tree
Showing 5 changed files with 825 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
*.jar
out
13 changes: 13 additions & 0 deletions Visual-Studio-2019-Dark-Theme.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>
29 changes: 29 additions & 0 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<idea-plugin>
<id>com.gmike.visual-studio-2019-dark</id>
<name>Visual-Studio-2019-Dark-Theme</name>
<version>1.3</version>
<vendor email="roman.soloweow@gmail.com" url="https://github.com/RomanSoloweow">GMIKE</vendor>

<description><![CDATA[
A dark theme for JetBrains IDEs inspired by default Visual Studio 2019 "Dark" theme.
It's may be useful for those who are just starting to use JetBrains products and are used to Visual Studio.
]]></description>

<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="191.0"/>

<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<depends>com.intellij.modules.lang</depends>

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
<themeProvider id="f4f066fe-d5e6-4c31-bdba-164e4eeb670e" path="/Visual_Studio_2019_Dark_Theme.theme.json"/>
<bundledColorScheme path="/Visual_Studio_2019_Dark_Theme"/>
</extensions>

<actions>
<!-- Add your actions here -->
</actions>

</idea-plugin>
8 changes: 8 additions & 0 deletions resources/Visual_Studio_2019_Dark_Theme.theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Visual-Studio-2019-Dark-Theme",
"dark": true,
"author": "GMIKE",
"editorScheme": "/Visual_Studio_2019_Dark_Theme.xml",
"ui": {
}
}
Loading

0 comments on commit e8779fc

Please sign in to comment.