Jakub Chrzanowski 2dce0189b9 Docs maintenance (#316)
docs maintenance
2020-09-21 17:15:08 +02:00
..
2020-09-21 17:15:08 +02:00
2020-08-12 11:25:19 +02:00

Theme Basics JetBrains IntelliJ Platform SDK Docs

Reference: Creating Custom UI Themes in IntelliJ SDK Docs

Quickstart

Custom UI 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. Custom UI Themes can:

  • substitute icons,
  • change the colors of icons and UI controls,
  • alter the borders and insets of UI controls,
  • provide custom editor schemes,
  • add background images.

Structure

Theme Basics plugin depends on the IntelliJ Platform SDK and DevKit as a build system.

The main plugin definition file is stored in the plugin.xml file, which is created according to the Plugin Configuration File documentation. It describes definitions of the actions, extensions, or listeners provided by the plugin.

Extension Points

Name Implementation Extension Point Class
com.intellij.themeProvider theme_basics.theme.json

Reference: Plugin Extension Points in IntelliJ SDK Docs