29 lines
847 B
Kotlin
29 lines
847 B
Kotlin
import dev.iurysouza.modulegraph.Theme
|
|
|
|
plugins {
|
|
alias(libs.plugins.com.android.application) apply false
|
|
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
|
|
alias(libs.plugins.org.jetbrains.kotlin.plugin.parcelize) apply false
|
|
alias(libs.plugins.android.library) apply false
|
|
|
|
id("dev.iurysouza.modulegraph") version "0.8.1"
|
|
}
|
|
|
|
moduleGraphConfig {
|
|
readmePath.set("${rootDir}/README.md")
|
|
heading.set("### Module Graph")
|
|
theme.set(
|
|
Theme.BASE(
|
|
mapOf(
|
|
"primaryTextColor" to "#fff",
|
|
"primaryColor" to "#5a4f7c",
|
|
"primaryBorderColor" to "#5a4f7c",
|
|
"lineColor" to "#f5a623",
|
|
"tertiaryColor" to "#40375c",
|
|
"fontSize" to "12px",
|
|
),
|
|
focusColor = "#FA8140"
|
|
),
|
|
)
|
|
}
|