Record Class IdServerColorScheme

java.lang.Object
java.lang.Record
com.io7m.idstore.server.api.IdServerColorScheme
Record Components:
buttonColors - The color of buttons
errorBorderColor - The border color for error messages
headerBackgroundColor - The background color of the page header
headerLinkColor - The color of links in the page header
headerTextColor - The color of text in the page header
mainBackgroundColor - The background color of the main page
mainLinkColor - The color of links on the main page
mainMessageBorderColor - The border color of page messages
mainTableBorderColor - The border color of tables
mainTextColor - The main text color

public record IdServerColorScheme(com.io7m.cxbutton.core.CxButtonColors buttonColors, IdColor errorBorderColor, IdColor headerBackgroundColor, IdColor headerLinkColor, IdColor headerTextColor, IdColor mainBackgroundColor, IdColor mainLinkColor, IdColor mainMessageBorderColor, IdColor mainTableBorderColor, IdColor mainTextColor) extends Record
A server color scheme.
  • Field Details

    • OCEAN_BLUE

      public static final IdColor OCEAN_BLUE
      An ocean blue colour.
  • Constructor Details

    • IdServerColorScheme

      public IdServerColorScheme(com.io7m.cxbutton.core.CxButtonColors buttonColors, IdColor errorBorderColor, IdColor headerBackgroundColor, IdColor headerLinkColor, IdColor headerTextColor, IdColor mainBackgroundColor, IdColor mainLinkColor, IdColor mainMessageBorderColor, IdColor mainTableBorderColor, IdColor mainTextColor)
      A server color scheme.
      Parameters:
      buttonColors - The color of buttons
      errorBorderColor - The border color for error messages
      headerBackgroundColor - The background color of the page header
      headerLinkColor - The color of links in the page header
      headerTextColor - The color of text in the page header
      mainBackgroundColor - The background color of the main page
      mainLinkColor - The color of links on the main page
      mainMessageBorderColor - The border color of page messages
      mainTableBorderColor - The border color of tables
      mainTextColor - The main text color
  • Method Details

    • defaults

      public static IdServerColorScheme defaults()
      Returns:
      The default color scheme
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • buttonColors

      public com.io7m.cxbutton.core.CxButtonColors buttonColors()
      Returns the value of the buttonColors record component.
      Returns:
      the value of the buttonColors record component
    • errorBorderColor

      public IdColor errorBorderColor()
      Returns the value of the errorBorderColor record component.
      Returns:
      the value of the errorBorderColor record component
    • headerBackgroundColor

      public IdColor headerBackgroundColor()
      Returns the value of the headerBackgroundColor record component.
      Returns:
      the value of the headerBackgroundColor record component
    • headerLinkColor

      public IdColor headerLinkColor()
      Returns the value of the headerLinkColor record component.
      Returns:
      the value of the headerLinkColor record component
    • headerTextColor

      public IdColor headerTextColor()
      Returns the value of the headerTextColor record component.
      Returns:
      the value of the headerTextColor record component
    • mainBackgroundColor

      public IdColor mainBackgroundColor()
      Returns the value of the mainBackgroundColor record component.
      Returns:
      the value of the mainBackgroundColor record component
    • mainLinkColor

      public IdColor mainLinkColor()
      Returns the value of the mainLinkColor record component.
      Returns:
      the value of the mainLinkColor record component
    • mainMessageBorderColor

      public IdColor mainMessageBorderColor()
      Returns the value of the mainMessageBorderColor record component.
      Returns:
      the value of the mainMessageBorderColor record component
    • mainTableBorderColor

      public IdColor mainTableBorderColor()
      Returns the value of the mainTableBorderColor record component.
      Returns:
      the value of the mainTableBorderColor record component
    • mainTextColor

      public IdColor mainTextColor()
      Returns the value of the mainTextColor record component.
      Returns:
      the value of the mainTextColor record component