jetbrains-theme-investigation | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / jetbrains-theme-investigation

jetbrains-theme-investigation

maintained by smykla-labs

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

name: jetbrains-theme-investigation description: Investigates JetBrains IntelliJ Platform theme properties by searching source code. Use when user asks about UI theming, icon colors, tab spacing, component styling, or needs to find what properties are themeable vs hardcoded in IntelliJ-based IDEs.

JetBrains Theme Investigation

Investigate theme properties in the IntelliJ Platform source code to determine what is themeable via JSON vs hardcoded in source.

Prerequisites

IntelliJ Platform source code must be available at:

../../JetBrains/intellij-community

(Relative to current project directory)

If not cloned yet:

cd ~/Projects/github.com/JetBrains
git clone https://github.com/JetBrains/intellij-community

Quick Investigation Workflow

  1. Search theme metadata first (what properties exist):

    grep -i "PropertyName" ../../JetBrains/intellij-community/platform/platform-resources/src/themes/metadata/*.json
    
  2. Check reference themes (how properties are used):

    grep -r "PropertyName" ../../JetBrains/intellij-community/platform/platform-resources/src/themes/ --include="*.json"
    
  3. Search JBUI.java for programmatic color access:

    grep -A3 "namedColor.*PropertyName" ../../JetBrains/intellij-community/platform/util/ui/src/com/intellij/util/ui/JBUI.java
    
  4. Search source for hardcoded values if not found above:

    grep -rn "propertyName\|PROPERTY_NAME" ../../JetBrains/intellij-community/platform/platform-*/src --include="*.kt" --include="*.java"
    

Key Directories

Path Content
platform/platform-resources/src/themes/metadata/ Available theme properties (IntelliJPlatform.themeMetadata.json, JDK.themeMetadata.json)
platform/platform-resources/src/themes/ Reference themes (expUI, islands, darcula, HighContrast)
platform/util/ui/src/com/intellij/util/ui/JBUI.java CurrentTheme methods mapping to JSON keys
platform/icons/src/ SVG icons (check colors used)

Detailed References

For specific subsystems, see:

Determining if Themeable

Found In Result
Theme metadata JSON Themeable via JSON
JBUI.java with namedColor/getInt Themeable via JSON
Source code with hardcoded values NOT themeable (requires code change)

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated il y a 4 mois
tools tools ide plugins

Related Skills

writing-skills
chevron_right
codex
chevron_right
smart-illustrator
chevron_right
ast-index
chevron_right
packmind-standard-creator
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.