Gradle/DevKit approach or Plugin/Theme topic content reorganization (#862)

This commit is contained in:
Karol Lewandowski 2022-09-27 08:01:29 -07:00 committed by GitHub
parent c2f83ebeba
commit 70d4ebcec9
3 changed files with 6 additions and 6 deletions

View File

@ -55,7 +55,7 @@ In the following table, you may find all available samples provided in the separ
| [Run Configuration](./run_configuration) | Run configuration implementation with factory, options and UI. | | [Run Configuration](./run_configuration) | Run configuration implementation with factory, options and UI. |
| [Settings](./settings) | Custom settings panel, adds a settings panel to the **Settings/Preferences** panel under **Tools**. | | [Settings](./settings) | Custom settings panel, adds a settings panel to the **Settings/Preferences** panel under **Tools**. |
| [Simple Language Plugin](./simple_language_plugin) | Custom language support, defines a new *Simple language* with syntax highlighting, annotations, code completion, and other features. | | [Simple Language Plugin](./simple_language_plugin) | Custom language support, defines a new *Simple language* with syntax highlighting, annotations, code completion, and other features. |
| [Theme Basics](./theme_basics) | Sample *UI Theme* plugin with basic interface modifications. | | [Theme Basics](./theme_basics) | Sample *theme* plugin with basic interface modifications. |
| [Tool Window](./tool_window) | Custom Tool Window example plugin. | | [Tool Window](./tool_window) | Custom Tool Window example plugin. |
| [Tree Structure Provider](./tree_structure_provider) | Tree Structure Provider showing only plain text files. | | [Tree Structure Provider](./tree_structure_provider) | Tree Structure Provider showing only plain text files. |

View File

@ -1,12 +1,12 @@
# Theme Basics [![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)][docs] # Theme Basics [![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)][docs]
*Reference: [Creating Custom UI Themes in IntelliJ SDK Docs][docs:themes]* *Reference: [Creating Custom Themes in IntelliJ SDK Docs][docs:themes]*
## Quickstart ## Quickstart
Custom UI Themes are available beginning in version 2019.1. Custom themes are available beginning in version 2019.1.
Creating a custom UI Theme is a process of choosing a base IDE Theme (Light or Darcula) then changing aspects of the base Theme definition. Creating a custom theme is a process of choosing a base IDE Theme (Light or Darcula) then changing aspects of the base Theme definition.
Custom UI Themes can: Custom themes can:
- substitute icons, - substitute icons,
- change the colors of icons and UI controls, - change the colors of icons and UI controls,
- alter the borders and insets of UI controls, - alter the borders and insets of UI controls,

View File

@ -20,7 +20,7 @@
<description> <description>
<![CDATA[ <![CDATA[
IntelliJ Platform SDK code sample to illustrate creating <em>UI Themes</em>. IntelliJ Platform SDK code sample to illustrate creating <em>themes</em>.
]]> ]]>
</description> </description>
<change-notes> <change-notes>