Interface EmbeddedSass.Value.RgbColorOrBuilder

    • Method Detail

      • getRed

        int getRed()
         The color's red channel. Mandatory. May not be above 255.
         
        uint32 red = 1;
        Returns:
        The red.
      • getGreen

        int getGreen()
         The color's green channel. Mandatory. May not be above 255.
         
        uint32 green = 2;
        Returns:
        The green.
      • getBlue

        int getBlue()
         The color's blue channel. Mandatory. May not be above 255.
         
        uint32 blue = 3;
        Returns:
        The blue.
      • getAlpha

        double getAlpha()
         The color's alpha channel. Mandatory. Must be between 0 and 1,
         inclusive.
         
        double alpha = 4;
        Returns:
        The alpha.