Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/JetBrains/rider-theme-pack

JetBrains Rider theme pack.
https://github.com/JetBrains/rider-theme-pack

Last synced: about 2 months ago
JSON representation

JetBrains Rider theme pack.

Awesome Lists containing this project

README

        

# rider-theme-pack

[![JetBrains team project](https://jb.gg/badges/team.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)

## Color scheme editing

After making changes to the color scheme files (`colorSchemes\*.xml`) apply the sorting utility
`tools\PrettyXML.py` to make these files have the same order of elements and attributes.
This utility requires Python 3.7 .

There is an IDEA run configuration *'Sort color scheme files'* for that task.

#### Rider-specific color themes (`Rider*.xml`)

These files are created by a utility which is not published yet. Please don't edit them manually,
these changes will be lost.

## How to debug the plugin in Rider

Since this plugin is bundled with Rider *and* hidden from the list of installed plugins *and* also protected from being
deactivated, it's not easy to develop a new version of the plugin since the newer version of the plugin is not loaded
because of the protection of the bundled version.

To circumvent this, change the plugin ID in the file `META-INF/plugin.xml`:


Rider UI Theme Pack DEBUG
Rider UI Theme Pack
...

Now the new version of the plugin will be loaded. Well, because now it's essentially just another plugin. Since
the UI themes' and schemes' names are still the same, there can be some confusion selecting the proper theme/scheme.

The lists of UI themes will have two instances of each theme:

Rider Light
Rider Light <- from the updated plugin
Rider Dark
Rider Dark <- from the updated plugin

Unlike the UI themes, the lists of Editor Color Schemes will only contain a single instance of each color theme,
and these color schemes are the ones from the updated version of the plugin.

## Branches

The plugin `Rider Theme Pack` in the IDEA plugin gallery is built from the branch `plugin`.

The branches named `net*` are for the themes bundled with the matching branches of Rider:
* `net232` for Rider 2023.2
* `net233` for Rider 2023.3