https://github.com/aoki/cplant
Colour Themes for the Plant UML
https://github.com/aoki/cplant
color plantuml theme
Last synced: 4 months ago
JSON representation
Colour Themes for the Plant UML
- Host: GitHub
- URL: https://github.com/aoki/cplant
- Owner: aoki
- Created: 2017-06-01T02:24:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-02T13:57:06.000Z (almost 9 years ago)
- Last Synced: 2025-06-05T06:55:19.678Z (12 months ago)
- Topics: color, plantuml, theme
- Homepage:
- Size: 17.6 KB
- Stars: 17
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cplant
cplant(Color PLANT uml) is theme for the plant UML.

```uml
@startuml
!define BLACK #363D5D
!define RED #F6363F
!define PINK #F6216E
!define MAGENTA #A54FBD
!define GREEN #37A77C
!define YELLOW #F97A00
!define BLUE #1E98F2
!define CYAN #25AFCA
!define WHITE #FEF2DC
' Base Setting
skinparam Shadowing false
skinparam BackgroundColor transparent
skinparam ComponentStyle uml2
skinparam Default {
FontName 'Hiragino Sans'
FontColor BLACK
FontSize 10
FontStyle plain
}
skinparam Sequence {
ArrowThickness 1
ArrowColor RED
ActorBorderThickness 1
LifeLineBorderColor GREEN
ParticipantBorderThickness 0
}
skinparam Participant {
BackgroundColor BLACK
BorderColor BLACK
FontColor #FFFFFF
}
skinparam Actor {
BackgroundColor BLACK
BorderColor BLACK
}
title Sample Sequence
actor User
participant "First Class" as A
participant "Second Class" as B
participant "Last Class" as C
User -> A: DoWork
activate A
A -> B: Create Request
activate B
B -> C: DoWork
activate C
C --> B: WorkDone
destroy C
B --> A: Request Created
deactivate B
A --> User: Done
deactivate A
@enduml
```