settings
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
背景色
code:style.css
body {
background-color: #ff198c;
}
アイコンの色
code:style.css
.page-menu .tool-btn {
background-color: #ffffff !important; /* 背景だけ白 */
color: #ff198c !important; /* テキストやアイコンを黒に */
fill: #000000 !important; /* SVGなどの塗りも黒に */
}
左に出てくる編集中のバー
code:style.css
.line .telomere-border.updated-after-load {
border-color: #ff198c !important;
}
カード新規作成時の左のバーの色
code:style.css
.line .telomere .telomere-border.unread:not(.updated-after-load) {
border-color: var(--telomere-unread, #000000);
}
箇条書きのとこ
code:style.css
/* ピンクの小さな三角形+点滅 */
.line .indent-mark .dot {
position: absolute !important;
right: 5px !important;
top: 7px !important;
/* 三角形を作る(幅高さ0、borderで描画) */
width: 0 !important;
height: 0 !important;
background: none !important;
border-radius: 0 !important;
border-top: 3px solid transparent !important;
border-bottom: 3px solid transparent !important;
border-left: 7px solid #ff3399 !important; /* ← 背景と同じピンクに変更 */
}