SolarizedBase

enum SolarizedBase : Enum<ColorThemeResource.SolarizedBase>

Entries

SOLARIZED_DARK_BASE
Link copied to clipboard
common
SOLARIZED_DARK_BASE(ColorThemeBuilder.newBuilder() .withPrimaryForegroundColor(TileColor.fromString("#fdf6e3")) // note that this was made darker because there was not enough contrast .withSecondaryForegroundColor(TileColor.fromString("#cec8b5")) .withPrimaryBackgroundColor(TileColor.fromString("#073642")) .withSecondaryBackgroundColor(TileColor.fromString("#002b36")))
SOLARIZED_LIGHT_BASE
Link copied to clipboard
common
SOLARIZED_LIGHT_BASE(ColorThemeBuilder.newBuilder() .withPrimaryForegroundColor(TileColor.fromString("#002b36")) // note that this was made lighter because there was not enough contrast .withSecondaryForegroundColor(TileColor.fromString("#275662")) .withPrimaryBackgroundColor(TileColor.fromString("#fdf6e3")) .withSecondaryBackgroundColor(TileColor.fromString("#eee8d5")))

Functions

compareTo
Link copied to clipboard
common
operator override fun compareTo(other: ColorThemeResource.SolarizedBase): Int
equals
Link copied to clipboard
common
operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

colorThemeBuilder
Link copied to clipboard
common
val colorThemeBuilder: ColorThemeBuilder
name
Link copied to clipboard
common
val name: String
ordinal
Link copied to clipboard
common
val ordinal: Int

Sources

(source)
Link copied to clipboard