You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having some success with this approach. I've only just started playing with Tyrian and Scalacss, so I'm not sure how flexible or "future-proof" this may be.
Use these conversions:
given Conversion[StyleA, tyrian.Attr[Nothing]] with
def apply(style: StyleA): tyrian.Attr[Nothing] =
tyrian.Html.styles(
style.style.inspectCss
.flatMap(
_.content.toSet
.map(kv => tyrian.Style(kv.key, kv.value))
)
.toList: _*
)
// Workaround for embedding ValueT types in strings. Target must be explicitly typed as String.
import scalacss.internal.ValueT
given Conversion[ValueT[_], String] with
def apply(value: ValueT[_]): String = value.value
then a sample Stylesheet will be:
val CssSettings = scalacss.devOrProdDefaults
import CssSettings._
object Styles extends StyleSheet.Inline:
import dsl.*
// Place above code here
private object Color:
val themeL1 = rgb(0x70, 0x8d, 0xa2)
val themeD2 = rgb(0x44, 0x59, 0x68)
val textTheme = themeL5
private val verdana = fontFace("verdana")(_.src("url(verdana.woff2)"))
val app =
val from: String = Color.themeL1
val to: String = Color.themeD2
style(
display.flex,
flexDirection := "column",
height(100.%%),
minHeight(100.vh),
background := s"linear-gradient(45deg, $from, $to)",
fontFamily(verdana),
fontSize(1.5.rem),
color(Color.textTheme)
)
No description provided.
The text was updated successfully, but these errors were encountered: