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

com.github.woojiahao.style.elements.code.Code.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.elements.code

import com.github.woojiahao.style.Settings
import com.github.woojiahao.style.css.CssProperty
import com.github.woojiahao.style.css.cssSelector
import com.github.woojiahao.style.elements.Element
import com.github.woojiahao.utility.c

open class Code(elementName: String) : Element(elementName) {
  init {
    val fontFamily by CssProperty(fallback = Settings.monospaceFont)
    this.fontFamily = fontFamily

    val textColor by CssProperty(c("073642"), c("eee8d5"))
    this.textColor = textColor

    val backgroundColor by CssProperty(c("fdf6e3"), c("002b36"))
    this.backgroundColor = backgroundColor
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy