diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/popdowns/updates.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/popdowns/updates.tsx b/src/modules/popdowns/updates.tsx index fd98671..b4b4a63 100644 --- a/src/modules/popdowns/updates.tsx +++ b/src/modules/popdowns/updates.tsx @@ -29,8 +29,12 @@ const Update = (update: IUpdate) => { > <label truncate + useMarkup xalign={0} - label={`${update.name} (${update.version.old} -> ${update.version.new})\n ${update.description}`} + label={bind(Palette.get_default(), "colours").as( + c => + `${update.name} <span foreground="${c.teal}">(${update.version.old} -> ${update.version.new})</span>\n <span foreground="${c.subtext0}">${update.description}</span>` + )} /> </button> ); |