Skip to content

Commit

Permalink
lighter
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanlas committed Apr 4, 2024
1 parent b38c5f0 commit cef55d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ flowchart
writer-lambda:::Lambda
classDef Lambda fill:#bc4f4f
classDef Lambda fill:#d49090
classDef Service fill:#586ba4
classDef Service fill:#a1add1
subgraph persistence [Persistence]
database[(database)]:::Database
Expand All @@ -40,9 +40,9 @@ flowchart
writer-lambda:::Lambda
classDef Lambda fill:#bc4f4f
classDef Lambda fill:#d49090
classDef Service fill:#586ba4
classDef Service fill:#a1add1
subgraph persistence [Persistence]
database[(database)]:::Database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,13 @@ object DemoDsl:
private def skinMermaidBlue(isBright: Boolean) =
Option
.when(isBright):
ClassDef(NonEmptyList.one("Service"), NonEmptyList.of("fill" -> "#586ba4"))
ClassDef(NonEmptyList.one("Service"), NonEmptyList.of("fill" -> "#a1add1"))
.toList

private def skinMermaidRed(isBright: Boolean) =
Option
.when(isBright):
ClassDef(NonEmptyList.one("Lambda"), NonEmptyList.of("fill" -> "#bc4f4f"))
ClassDef(NonEmptyList.one("Lambda"), NonEmptyList.of("fill" -> "#d49090"))
.toList

case class Config(
Expand Down

0 comments on commit cef55d0

Please sign in to comment.