dracula / jetbrains

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

Bad contrast with text selection for comments and named arguments in Kotlin files #81

Closed bomgar closed 1 year ago

bomgar commented 1 year ago

2023-06-05-153633_811x219_scrot

This affects comments and named arguments.

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() {
}