com.github.woojiahao.style.elements.Ruler.kt Maven / Gradle / Ivy
package com.github.woojiahao.style.elements
import com.github.woojiahao.style.Settings
import com.github.woojiahao.style.css.CssProperty
import com.github.woojiahao.style.utility.Border
import com.github.woojiahao.style.utility.Border.BorderStyle.SOLID
import com.github.woojiahao.style.utility.BorderBox
import com.github.woojiahao.style.utility.px
import com.github.woojiahao.utility.c
import java.awt.Color.BLACK
class Ruler(settings: Settings) : Element("hr", settings) {
init {
border = CssProperty(
settings.theme,
BorderBox(Border(1.0.px, SOLID, BLACK)),
BorderBox(Border(1.0.px, SOLID, c("EE")))
)
}
}