mirror of
https://github.com/patrickchiang/obsidian-dialogue-mode.git
synced 2026-07-22 10:20:31 +00:00
19 lines
No EOL
298 B
CSS
19 lines
No EOL
298 B
CSS
:root {
|
|
--dialogue-text-color: var(--text-normal);
|
|
}
|
|
|
|
.theme-dark {
|
|
--dialogue-excluded-text-color: #2e2e2e;
|
|
}
|
|
|
|
.theme-light {
|
|
--dialogue-excluded-text-color: #e0e0e0;
|
|
}
|
|
|
|
.non-dialogue-text {
|
|
color: var(--adjusted-color);
|
|
}
|
|
|
|
.dialogue-text {
|
|
color: var(--dialogue-text-color);
|
|
} |