in plugin/src/main/scala/org/apache/pekko/PekkoParadoxPlugin.scala [46:66]
def pekkoParadoxGlobalSettings: Seq[Setting[_]] = Seq(
paradoxTheme := Some("org.apache.pekko" % "pekko-theme-paradox" % version),
paradoxNavigationIncludeHeaders := true,
pekkoParadoxCopyright in Global :=
"""Copyright © 2011-2022 <a href="https://www.lightbend.com/">Lightbend, Inc</a>.
| Apache Pekko, Pekko, and its feather logo are trademarks of The Apache Software Foundation.""".stripMargin,
pekkoParadoxGithub in Global := None,
Compile / paradoxMaterialTheme := {
val theme =
(Compile / paradoxMaterialTheme).value
.withLogo("assets/images/pekko_logo.png")
.withFavicon("assets/images/pekko_favicon.png")
.withCustomStylesheet("assets/stylesheets/pekko-theme.css")
.withColor("white", "orange")
.withCopyright(pekkoParadoxCopyright.value)
pekkoParadoxGithub.value match {
case Some(githubUrl) => theme.withRepository(uri(githubUrl))
case None => theme
}
})