Enum Class FlatUIColors

java.lang.Object
java.lang.Enum<FlatUIColors>
eu.hansolo.fx.charts.color.FlatUIColors
All Implemented Interfaces:
Colors, Serializable, Comparable<FlatUIColors>, Constable

public enum FlatUIColors extends Enum<FlatUIColors> implements Colors
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The color ALIZARIN with an RGB value of colorToRGB(234, 111, 99).
    The color AMETHYST with an RGB value of colorToRGB(175, 122, 196).
    The color ASBESTOS with an RGB value of colorToRGB(127, 140, 141).
    The color BELIZE_HOLE with an RGB value of colorToRGB(83, 153, 198).
    The color CARROT with an RGB value of colorToRGB(245, 175, 65).
    The color CLOUDS with an RGB value of colorToRGB(239, 243, 243).
    The color CONCRETE with an RGB value of colorToRGB(149, 165, 166).
    The color EMERLAND with an RGB value of colorToRGB(87, 214, 141).
    The color GREEN SEA with an RGB value of colorToRGB(26, 160, 133).
    The color MIDNIGHT BLUE with an RGB value of colorToRGB(44, 62, 80).
    The color NEPHRITIS with an RGB value of colorToRGB(39, 174, 96).
    The color ORANGE with an RGB value of colorToRGB(245, 175, 65).
    The color PETER RIVER with an RGB value of colorToRGB(92, 172, 226).
    The color POMEGRANATE with an RGB value of colorToRGB(204, 96, 85).
    The color PUMPKIN with an RGB value of colorToRGB(211, 85, 25).
    The color SILVER with an RGB value of colorToRGB(189, 195, 199).
    The color SUNFLOWER with an RGB value of colorToRGB(241, 196, 40).
    The color TURQOISE with an RGB value of colorToRGB(31, 188, 156).
    The color WET ASPHALT with an RGB value of colorToRGB(52, 73, 94).
    The color WISTERIA with an RGB value of colorToRGB(142, 68, 173).
  • Method Summary

    Modifier and Type
    Method
    Description
    javafx.scene.paint.Color
    get()
    Returns the corresponding JavaFX color.
    rgb()
    Returns a String expression from the color with the format: colorToRGB(12, 121, 15)
    rgba(double OPACITY)
    Returns a String expression from the color and opacity with the format: colorToRGBA(12, 121, 15, 0.5)
    Returns the enum constant of this class with the specified name.
    static FlatUIColors[]
    Returns an array containing the constants of this enum class, in the order they are declared.
    web()
    Returns a String expression from the color with the format: #AB12CD

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • TURQOISE

      public static final FlatUIColors TURQOISE
      The color TURQOISE with an RGB value of colorToRGB(31, 188, 156).


    • GREEN_SEA

      public static final FlatUIColors GREEN_SEA
      The color GREEN SEA with an RGB value of colorToRGB(26, 160, 133).


    • EMERLAND

      public static final FlatUIColors EMERLAND
      The color EMERLAND with an RGB value of colorToRGB(87, 214, 141).


    • NEPHRITIS

      public static final FlatUIColors NEPHRITIS
      The color NEPHRITIS with an RGB value of colorToRGB(39, 174, 96).


    • PETER_RIVER

      public static final FlatUIColors PETER_RIVER
      The color PETER RIVER with an RGB value of colorToRGB(92, 172, 226).


    • BELIZE_HOLE

      public static final FlatUIColors BELIZE_HOLE
      The color BELIZE_HOLE with an RGB value of colorToRGB(83, 153, 198).


    • AMETHYST

      public static final FlatUIColors AMETHYST
      The color AMETHYST with an RGB value of colorToRGB(175, 122, 196).


    • WISTERIA

      public static final FlatUIColors WISTERIA
      The color WISTERIA with an RGB value of colorToRGB(142, 68, 173).


    • SUNFLOWER

      public static final FlatUIColors SUNFLOWER
      The color SUNFLOWER with an RGB value of colorToRGB(241, 196, 40).


    • ORANGE

      public static final FlatUIColors ORANGE
      The color ORANGE with an RGB value of colorToRGB(245, 175, 65).


    • CARROT

      public static final FlatUIColors CARROT
      The color CARROT with an RGB value of colorToRGB(245, 175, 65).


    • PUMPKIN

      public static final FlatUIColors PUMPKIN
      The color PUMPKIN with an RGB value of colorToRGB(211, 85, 25).


    • ALIZARIN

      public static final FlatUIColors ALIZARIN
      The color ALIZARIN with an RGB value of colorToRGB(234, 111, 99).


    • POMEGRANATE

      public static final FlatUIColors POMEGRANATE
      The color POMEGRANATE with an RGB value of colorToRGB(204, 96, 85).


    • CLOUDS

      public static final FlatUIColors CLOUDS
      The color CLOUDS with an RGB value of colorToRGB(239, 243, 243).


    • SILVER

      public static final FlatUIColors SILVER
      The color SILVER with an RGB value of colorToRGB(189, 195, 199).


    • CONCRETE

      public static final FlatUIColors CONCRETE
      The color CONCRETE with an RGB value of colorToRGB(149, 165, 166).


    • ASBESTOS

      public static final FlatUIColors ASBESTOS
      The color ASBESTOS with an RGB value of colorToRGB(127, 140, 141).


    • WET_ASPHALT

      public static final FlatUIColors WET_ASPHALT
      The color WET ASPHALT with an RGB value of colorToRGB(52, 73, 94).


    • MIDNIGHT_BLUE

      public static final FlatUIColors MIDNIGHT_BLUE
      The color MIDNIGHT BLUE with an RGB value of colorToRGB(44, 62, 80).


  • Method Details

    • values

      public static FlatUIColors[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FlatUIColors valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public javafx.scene.paint.Color get()
      Description copied from interface: Colors
      Returns the corresponding JavaFX color.
      Specified by:
      get in interface Colors
      Returns:
      the corresponding JavaFX color.
    • rgb

      public String rgb()
      Description copied from interface: Colors
      Returns a String expression from the color with the format: colorToRGB(12, 121, 15)
      Specified by:
      rgb in interface Colors
      Returns:
      the String expression.
    • rgba

      public String rgba(double OPACITY)
      Description copied from interface: Colors
      Returns a String expression from the color and opacity with the format: colorToRGBA(12, 121, 15, 0.5)
      Specified by:
      rgba in interface Colors
      Returns:
      the String expression.
    • web

      public String web()
      Description copied from interface: Colors
      Returns a String expression from the color with the format: #AB12CD
      Specified by:
      web in interface Colors
      Returns:
      the String expression.