개발

[noteplan] 커스텀 theme 설정

ttoance 2025. 12. 5. 22:16
반응형
  • 미완료 할 일 → todo
  • 완료된 할 일 [x] → checked
  • 취소된 할 일 [-] → checked-canceled
  • 미뤄둔 할 일 [>] → checked-scheduled
  • 체크박스 아이콘 글꼴 → todo, checked-todo-characters

 

 


취소된 할 일 [-]

"checked-canceled": {
  "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)",
  "matchPosition": 0,

  "color": "#555555",
  "strikethroughStyle": 1
},
 
 

 

✅ 완료된 할 일 [x] 전체 라인: 흐린 회색 + (원하면 취소선)

 
"checked": {
  "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)",
  "matchPosition": 0,

  "color": "#888888",          // 완료: 텍스트/기호 모두 회색 톤
  "strikethroughStyle": 1,     // <- 원하면 취소선
  "strikethroughColor": "#888888"
},

 

 

✅ 완료된 할 일의 체크박스 아이콘만 살짝 다른 색

"checked-todo-characters": {
  "font": "noteplanstate",
  "headIndent": 33,
  "size": 16,
  "color": "#66CBFFC6"    // 박스 아이콘만 살짝 푸른-초록
},
반응형