Replies: 3 comments 2 replies
-
Modifying the faces works for me. I think the problem is that you cannot configure both |
Beta Was this translation helpful? Give feedback.
-
So is there a way to change both the colors and the string? |
Beta Was this translation helpful? Give feedback.
-
@minad , could you please provide a working example? I tried various combinations, and whenever defining both the string and face in I'm sure the fault is on my end -- I've never really grokked the face properties system. Here is the last variant I tried with org-modern-priority '((?0 .
(propertize "P0"
'face '('(:foreground "DarkRed" :background "LightPink")
'org-modern-priority)))) My goal was to use your My current workaround is to just define the strings in (setq org-modern-priority '((?0 . " P0 ")
(?1 . " P1 ")
...)
And then to inherit from your (setq org-priority-faces '((?0 :inherit org-modern-priority
:background "DarkRed" :foreground "LightPink")
(?1 :inherit org-modern-priority
:background "DarkOrange4" :foreground "LightGoldenRod")
...) This works well enough -- the styling matches the Still, I'd like to achieve this result "properly" by just defining Love this project, by the way. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Pretty simple issue here. The following code does not do anything at all:
Modifying the string works as expected:
Solution I've found so far is to use:
Is there a difference between those two variables?
Also, is is possible to modify the font to be of similar size to the TODO item?
Beta Was this translation helpful? Give feedback.
All reactions