mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-06 05:27:50 +00:00
116 lines
2.2 KiB
Plaintext
116 lines
2.2 KiB
Plaintext
|
!ifndef FONTNAME
|
||
|
!define FONTNAME "Verdana"
|
||
|
!endif
|
||
|
|
||
|
!ifndef FONTSIZE
|
||
|
!define FONTSIZE 11
|
||
|
!endif
|
||
|
|
||
|
!ifdef DARKBLUE
|
||
|
skinparam backgroundColor 777
|
||
|
!define ACCENT 1a66c2
|
||
|
!define ACCENTDARK 002642
|
||
|
skinparam stereotypeCBackgroundColor ACCENT
|
||
|
!define DARKSTYLE
|
||
|
!endif
|
||
|
!ifdef LIGHTBLUE
|
||
|
!define ACCENT 2a86e2
|
||
|
!define ACCENTDARK 1a66c2
|
||
|
skinparam stereotypeCBackgroundColor ACCENTDARK
|
||
|
!define LIGHTSTYLE
|
||
|
!endif
|
||
|
|
||
|
!ifdef DARKRED
|
||
|
!define ACCENT 880000
|
||
|
!define ACCENTDARK 330000
|
||
|
skinparam stereotypeCBackgroundColor ACCENT
|
||
|
!define DARKSTYLE
|
||
|
!endif
|
||
|
!ifdef LIGHTRED
|
||
|
!define ACCENT CC0033
|
||
|
!define ACCENTDARK AA0033
|
||
|
skinparam stereotypeCBackgroundColor ACCENTDARK
|
||
|
!define LIGHTSTYLE
|
||
|
!endif
|
||
|
|
||
|
!ifdef DARKGREEN
|
||
|
!define ACCENT 228811
|
||
|
!define ACCENTDARK 113300
|
||
|
skinparam stereotypeCBackgroundColor ACCENT
|
||
|
!define DARKSTYLE
|
||
|
!endif
|
||
|
!ifdef LIGHTGREEN
|
||
|
!define ACCENT 55BB33
|
||
|
!define ACCENTDARK 338822
|
||
|
skinparam stereotypeCBackgroundColor ACCENTDARK
|
||
|
!define LIGHTSTYLE
|
||
|
!endif
|
||
|
|
||
|
!ifdef DARKORANGE
|
||
|
!define ACCENT BB6600
|
||
|
!define ACCENTDARK 662200
|
||
|
skinparam stereotypeCBackgroundColor ACCENT
|
||
|
!define DARKSTYLE
|
||
|
!endif
|
||
|
!ifdef LIGHTORANGE
|
||
|
!define ACCENT FF8800
|
||
|
!define ACCENTDARK BB6600
|
||
|
skinparam stereotypeCBackgroundColor ACCENT
|
||
|
!define LIGHTSTYLE
|
||
|
!endif
|
||
|
|
||
|
!ifdef LIGHTSTYLE
|
||
|
!define PRIMARY 000
|
||
|
!define SECONDARY 333
|
||
|
!define ARROWCOLOR 000
|
||
|
!define ARROWFONTCOLOR 333
|
||
|
!define BORDERCOLOR aaa
|
||
|
!define BOXBG ccc
|
||
|
skinparam backgroundColor fff
|
||
|
!endif
|
||
|
|
||
|
!ifdef DARKSTYLE
|
||
|
!define PRIMARY fff
|
||
|
!define SECONDARY aaa
|
||
|
!define ARROWCOLOR fff
|
||
|
!define ARROWFONTCOLOR bbb
|
||
|
!define BORDERCOLOR 1b1b1b
|
||
|
!define BOXBG 2e2e2e
|
||
|
skinparam backgroundColor 777
|
||
|
!endif
|
||
|
|
||
|
|
||
|
skinparam circledCharacter {
|
||
|
radius 8
|
||
|
fontSize FONTSIZE
|
||
|
fontName FONTNAME
|
||
|
}
|
||
|
|
||
|
skinparam class {
|
||
|
backgroundColor BOXBG
|
||
|
borderColor BORDERCOLOR
|
||
|
|
||
|
fontColor PRIMARY
|
||
|
fontName FONTNAME
|
||
|
fontSize FONTSIZE
|
||
|
|
||
|
arrowColor ARROWCOLOR
|
||
|
arrowFontName FONTNAME
|
||
|
arrowFontColor ARROWFONTCOLOR
|
||
|
arrowFontSize FONTSIZE
|
||
|
|
||
|
attributeFontColor SECONDARY
|
||
|
attributeFontSize FONTSIZE
|
||
|
attributeIconSize FONTSIZE
|
||
|
stereotypeFontColor SECONDARY
|
||
|
stereotypeFontSize FONTSIZE
|
||
|
}
|
||
|
|
||
|
skinparam note {
|
||
|
backgroundColor ACCENT
|
||
|
borderColor ACCENTDARK
|
||
|
|
||
|
fontColor PRIMARY
|
||
|
fontName FONTNAME
|
||
|
fontSize FONTSIZE
|
||
|
}
|