• Colors may be shown if they are not color codes. e.g. "#feature" contains #fea. This plugin recognizes it as a hex color code.
  • If you use the GTK Look and Feel, you cannot change an alpha value in the color chooser.
  • Hsl or hsla color values may not be changed correctly when you use the color chooser. (There may be 1% errors.)
  • " > mvncenter: com.junichi11.netbeans.modules:netbeans-color-codes-preview:0.13.4
    n

    netbeans-color-codes-preview

    Show color codes preview per line in a sidebar area of an editor.

    Disable / Enable

    Check/Uncheck View > Show Colors

    Supported color patterns

    • Hex color code (e.g. #ffffff, #000)
    • Css rgb/rgba values (e.g. rgb(0,0,0), rgba(255, 255, 255, 0.8))
    • Css hsl/hsla values (e.g. hsl(0, 100%, 50%), hsla(120, 100%, 50%, 0.5))
    • Named colors (e.g. red, blue)
    • Java Color class (e.g. Color.black, new Color(100, 100, 100))

    Multiple colors

    • Show top two colors in a sidebar if there are multiple colors in a line.
    • If you want to check all colors, please click a specific rectangle. They will be shown as a list.

    Change a color using the color chooser

    • Click a colored rectangle
    • Click a color value of a list
    • Select a new color in the color chooser
    • An old color value will be changed to new one with the same format

    Generate color codes

    You can generate color codes via a code generator(Alt + Ins).

    1. Run a code generator(Alt + Ins)
    2. Choose Color...
    3. Choose format you expect (e.g. new Color(r, g, b))
    4. Choose a color
    5. Click the OK button
    6. A color code is generated at the caret position

    Options

    Tools > Options > Miscellaneous > Color Codes Preview

    Regex for enabled mime-types for Hex and CSS colors

    Default value is `^text/(x-)?(css|less|sass|scss)$`. If you would like to disable/enable some mime-types, please change the default regex. This pattern is used when the plugin checks a mime-type.

    Named Colors

    This option is `false` by default. If you would like to show named colors, please check it.

    NOTE

    • If you would like to show colors of `Color.decode()` e.g. `Color.decode(#000000)`, Please add `java` to "Regex for enabled mime-types" of Hex and CSS e.g. (`^text/(x-)?(css|less|sass|scss|java)$`)
    • Colors may be shown if they are not color codes. e.g. "#feature" contains #fea. This plugin recognizes it as a hex color code.
    • If you use the GTK Look and Feel, you cannot change an alpha value in the color chooser.
    • Hsl or hsla color values may not be changed correctly when you use the color chooser. (There may be 1% errors.)
    https://github.com/junichi11/netbeans-color-codes-preview
    Apache License, Version 2.0
    Junichi Yamamoto
    Files download
    File Operation
    netbeans-color-codes-preview-0.13.4.jar download
    netbeans-color-codes-preview-0.13.4.pom download
    Apache Maven
    <dependency>
      <groupId>com.junichi11.netbeans.modules</groupId>
      <artifactId>netbeans-color-codes-preview</artifactId>
      <version>0.13.4</version>
      <type>nbm</type>
    </dependency>
    
    Gradle Groovy
    implementation 'com.junichi11.netbeans.modules:netbeans-color-codes-preview:0.13.4'
    Gradle Kotlin
    implementation("com.junichi11.netbeans.modules:netbeans-color-codes-preview:0.13.4")
    Scala SBT
    libraryDependencies += "com.junichi11.netbeans.modules" % "netbeans-color-codes-preview" % "0.13.4"
    Groovy Grape
    @Grapes(
      @Grab(group='com.junichi11.netbeans.modules', module='netbeans-color-codes-preview', version='0.13.4')
    )
    
    Apache Ivy
    <dependency org="com.junichi11.netbeans.modules" name="netbeans-color-codes-preview" rev="0.13.4" />
    Leiningen
    [com.junichi11.netbeans.modules/netbeans-color-codes-preview "0.13.4"]
    Apache Buildr
    'com.junichi11.netbeans.modules:netbeans-color-codes-preview:jar:0.13.4'