Skip to content

Commit

Permalink
Merge pull request #4 from zeekbyte/thanbv/feat/add-new-themes
Browse files Browse the repository at this point in the history
feat(0.1.7): added new themes: Day and Moon
  • Loading branch information
zeekbyte authored Sep 15, 2024
2 parents 1177134 + ac08b51 commit f1b60c7
Show file tree
Hide file tree
Showing 11 changed files with 1,794 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .intellijPlatform/self-update.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-09-14
2024-09-15
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@

### Added

## [0.1.6] 13-09.2024
## [0.1.7] 15.09.2024
- Added new themes: `Day` and `Moon`
- Rename the `Dark` theme to `Night`

## [0.1.6] 13.09.2024
- Fixed for compatibility with IntelliJ IDEA 2024.2.1

## [0.1.5] - 15.11.2022
Expand Down
25 changes: 13 additions & 12 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<idea-plugin>

<id>com.zeekbtye.tokyonight</id>
<name>Tokyo Night Theme</name>
<vendor email="contact@zeekbyte.com" url="https://github.com/zeekbyte">zeekbyte</vendor>
<id>com.zeekbtye.tokyonight</id>
<name>Tokyo Night Theme</name>
<vendor email="contact@zeekbyte.com" url="https://github.com/zeekbyte">Zeekbyte</vendor>

<description>
<![CDATA[
<description>
<![CDATA[
Tokyo Night is a theme ported from wildly popular (https://github.com/enkia/tokyo-night-vscode-theme).
Currently only Tokyo Night Storm is available, but that could change later.
I forked from the repository [tokyonight-jetbrains](https://github.com/alexadhy/tokyonight-jetbrains) and continued to maintain it.
]]>
</description>
</description>

<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.platform</depends>

<extensions defaultExtensionNs="com.intellij">
<themeProvider id="com.zeekbyte.tokyonight-storm" path="/themes/TokyoNightStorm.theme.json"/>
<themeProvider id="com.zeekbyte.tokyonight-dark" path="/themes/TokyoNightDark.theme.json"/>
<themeProvider id="com.zeekbyte.tokyonight-day" path="/themes/TokyoNightDay.theme.json"/>
</extensions>
<extensions defaultExtensionNs="com.intellij">
<themeProvider id="com.zeekbyte.tokyonight-day" path="/themes/TokyoNightDay.theme.json"/>
<themeProvider id="com.zeekbyte.tokyonight-storm" path="/themes/TokyoNightStorm.theme.json"/>
<themeProvider id="com.zeekbyte.tokyonight-night" path="/themes/TokyoNightNight.theme.json"/>
<themeProvider id="com.zeekbyte.tokyonight-moon" path="/themes/TokyoNightMoon.theme.json"/>
</extensions>

</idea-plugin>
125 changes: 124 additions & 1 deletion src/main/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.
2 changes: 1 addition & 1 deletion src/main/resources/themes/TokyoNightDay.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@
<option name="TAB_SELECTED">
<value>
<option name="FOREGROUND" value="343b58"/>
<option name="BACKGROUND" value="16161e"/>
<option name="BACKGROUND" value="d5d6db"/>
<option name="EFFECT_TYPE" value="1"/>
</value>
</option>
Expand Down
Loading

0 comments on commit f1b60c7

Please sign in to comment.