├── .gitignore ├── README.md ├── demo.gif ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── namethatcolor ├── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── src │ ├── main │ ├── kotlin │ │ └── il │ │ │ └── co │ │ │ └── galex │ │ │ └── namethatcolor │ │ │ ├── core │ │ │ ├── exception │ │ │ │ └── ColorNotFoundException.kt │ │ │ ├── manager │ │ │ │ └── ColorNameFinder.kt │ │ │ ├── model │ │ │ │ ├── Color.kt │ │ │ │ ├── HexColor.kt │ │ │ │ ├── Hsl.kt │ │ │ │ └── Rgb.kt │ │ │ └── util │ │ │ │ ├── ColorExtensions.kt │ │ │ │ ├── ColorShadeGenerator.kt │ │ │ │ ├── Colors.kt │ │ │ │ ├── MaterialColors.kt │ │ │ │ └── Rounding.kt │ │ │ └── plugin │ │ │ ├── annotator │ │ │ └── ColorAnnotator.kt │ │ │ ├── completion │ │ │ ├── CaretCompletionContributor.kt │ │ │ ├── ClipboardCompletionContributor.kt │ │ │ └── ClipboardCompletionKotlinContributor.kt │ │ │ ├── intention │ │ │ └── NameColorIntention.kt │ │ │ └── util │ │ │ ├── CompletionResultSetExtensions.kt │ │ │ ├── Constants.kt │ │ │ └── Output.kt │ └── resources │ │ └── META-INF │ │ ├── plugin.xml │ │ └── withKotlin.xml │ └── test │ └── kotlin │ └── il │ └── co │ └── galex │ └── namethatcolor │ └── core │ ├── manager │ ├── ColorExtensionsTest.kt │ └── ColorNameFinderTest.kt │ ├── model │ └── HexColorTest.kt │ └── util │ └── ColorShadeGeneratorTest.kt ├── screenshots ├── clipboard.png └── quick-fix.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | .idea 3 | *.iml 4 | *.jar 5 | .DS_Store 6 | .gradle 7 | build 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/demo.gif -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /namethatcolor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/build.gradle -------------------------------------------------------------------------------- /namethatcolor/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/exception/ColorNotFoundException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/exception/ColorNotFoundException.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/manager/ColorNameFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/manager/ColorNameFinder.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Color.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/HexColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/HexColor.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Hsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Hsl.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Rgb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/model/Rgb.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/ColorExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/ColorExtensions.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/ColorShadeGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/ColorShadeGenerator.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/Colors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/Colors.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/MaterialColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/MaterialColors.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/Rounding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/core/util/Rounding.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/annotator/ColorAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/annotator/ColorAnnotator.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/CaretCompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/CaretCompletionContributor.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/ClipboardCompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/ClipboardCompletionContributor.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/ClipboardCompletionKotlinContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/completion/ClipboardCompletionKotlinContributor.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/intention/NameColorIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/intention/NameColorIntention.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/CompletionResultSetExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/CompletionResultSetExtensions.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/Constants.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/Output.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/kotlin/il/co/galex/namethatcolor/plugin/util/Output.kt -------------------------------------------------------------------------------- /namethatcolor/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /namethatcolor/src/main/resources/META-INF/withKotlin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/main/resources/META-INF/withKotlin.xml -------------------------------------------------------------------------------- /namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/manager/ColorExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/manager/ColorExtensionsTest.kt -------------------------------------------------------------------------------- /namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/manager/ColorNameFinderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/manager/ColorNameFinderTest.kt -------------------------------------------------------------------------------- /namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/model/HexColorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/model/HexColorTest.kt -------------------------------------------------------------------------------- /namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/util/ColorShadeGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/namethatcolor/src/test/kotlin/il/co/galex/namethatcolor/core/util/ColorShadeGeneratorTest.kt -------------------------------------------------------------------------------- /screenshots/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/screenshots/clipboard.png -------------------------------------------------------------------------------- /screenshots/quick-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/name-that-color-intellij-plugin/HEAD/screenshots/quick-fix.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include 'namethatcolor' --------------------------------------------------------------------------------