dracula / jetbrains

🧛🏻‍♂️ Dark theme for JetBrains IDEs (IntelliJ IDEA, PyCharm, RubyMine, PhpStorm, WebStorm, etc.)
https://draculatheme.com/jetbrains
MIT License
773 stars 36 forks source link

Bad contrast with highlighted or selected text in Kotlin #82

Open bomgar opened 1 year ago

bomgar commented 1 year ago

Text selection affects named arguments, unused functions and comments. 2023-06-05-173331_629x523_scrot

Highlight under cursor affects unused things. 2023-06-05-173526_295x100_scrot

bomgar commented 1 year ago
data class Test(
    val x: Long,
    val y: Long,
)

fun main(args: List<String>) {

    // TEST
    used()
    Test(
        x =1,
        y =2,

    )
}

fun unused() {
}

fun used() {
}
bomgar commented 1 year ago

I guess this is because the recommended selection color by the dracula palette is already used by the current line. But the brighter color for selection does not work well with the rest.