All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.joaocosta.interim.skins.DefaultSkin.scala Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package eu.joaocosta.interim.skins

/** Default Skin companion object. Includes both a light and dark mode.
  */
trait DefaultSkin:
  type Default

  def default(): Default =
    if (ColorScheme.lightModeEnabled()) lightDefault
    else darkDefault

  def lightDefault: Default
  def darkDefault: Default




© 2015 - 2024 Weber Informatics LLC | Privacy Policy