Back to list
smykla-labs

jetbrains-theme-investigation

by smykla-labs

Monokai Islands Theme for JetBrains GoLand - Dark theme combining Monokai colors with Islands UI

0🍴 0📅 Dec 19, 2025

SKILL.md


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

PathContent
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.javaCurrentTheme methods mapping to JSON keys
platform/icons/src/SVG icons (check colors used)

Detailed References

For specific subsystems, see:

Determining if Themeable

Found InResult
Theme metadata JSONThemeable via JSON
JBUI.java with namedColor/getIntThemeable via JSON
Source code with hardcoded valuesNOT themeable (requires code change)

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon