Diagram 的 sequence/flow 颜色过淡
Opened this issue · 7 comments
Deleted user commented
```sequence
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
```
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end
st->op->cond
cond(yes)->e
cond(no)->op
```
发现和 css 里 .md-fences, tt
的 color
有关
.md-fences, tt {
border-radius: 3px;
color: #f0f0f0;
padding: 0;
font-size: 0.9em;
}
Deleted user commented
Deleted user commented
.md-fences, tt {
color: #183055;
}
.md-fences .code-tooltip {
background-color:#F0F0F0;
}
HanryYu commented
尴尬,我不经常用这个,都没发现,我下个版本会修复
HanryYu commented
的确是 .md-fences, tt
的问题,新版已经release
Deleted user commented
HanryYu commented
最新的commit修复了,昨天没注意这个问题,我没有release,你可以直接在仓库更新blubook.css
Deleted user commented
Thank you very much