-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmermaid-theme.css
91 lines (73 loc) · 1.73 KB
/
mermaid-theme.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.actor, .labelBox {
stroke: black !important;
stroke-width: 1.5px !important;
fill: #007bff !important;
}
.note {
fill: #007bff !important;
stroke-width: 1px !important;
stroke: black !important;
}
.noteText tspan, .actor tspan, .labelText {
fill: white !important;
}
.loopText, .loopText tspan {
fill: #007bff !important;
}
.actor-line {
stroke: #007bff !important;
stroke-width: 1px;
}
.messageText, .loopText, .labelText, .noteText {
font-size: 15px !important;
stroke: none !important;
background: white !important;
}
.loopLine, line {
stroke: #333 !important;
stroke-width: 1px;
fill: none !important;
}
.activation0 {
fill: #eaecef;
stroke: #333;
}
@media (prefers-color-scheme: dark) {
background-color: #1b1b1d !important;
#arrowhead path{fill:white !important;stroke:white !important;}
.actor, .labelBox {
stroke: white !important;
stroke-width: 1.5px !important;
fill: #1E88E5 !important;
}
.note {
fill: #1E88E5 !important;
stroke-width: 1px !important;
}
.noteText tspan, .actor tspan, .labelText {
fill: white !important;
}
.actor-line {
stroke: white !important;
stroke-width: 1px;
}
.messageLine0, line {
stroke: white !important;
}
.messageText, .labelText, .noteText {
font-size: 15px !important;
fill: white !important;
}
.loopText, .loopText tspan {
font-size: 15px !important;
fill: #1E88E5 !important;
}
.loopLine, line {
stroke: white !important;
stroke-width: 1px;
}
.activation0 {
fill: #666666 !important;
stroke: white;
}
}