]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(2html): Make links use color scheme colors in TOhtml
authorMax Bernstein <tekknolagi@gmail.com>
Sat, 2 Nov 2024 17:48:53 +0000 (18:48 +0100)
committerChristian Brabandt <cb@256bit.org>
Sat, 2 Nov 2024 17:48:53 +0000 (18:48 +0100)
The browser-default dark blue/purple colors don't fit in with most color
schemes and also are unreadable if the color scheme has a dark
background.

closes: #10191

Signed-off-by: Max Bernstein <tekknolagi@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/syntax/2html.vim

index f3ce8bed8d78b5cd981dff993630acc33241fd79..ca40810e80570af163e1e290888ba497b8cefbf8 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax support file
 " Maintainer: Ben Fritz <fritzophrenic@gmail.com>
-" Last Change: 2023 Sep 05
+" Last Change: 2024 Nov 02
 "
 " Additional contributors:
 "
@@ -1843,6 +1843,10 @@ if s:settings.use_css && !s:settings.no_doc
   " default font size for different elements
   call append('.', '* { font-size: 1em; }')
   +
+  " use color scheme styles for links
+  " browser-default blue/purple colors for links don't look like the existing theme and are unreadable on dark backgrounds
+  call append('.', 'a { color: inherit; }')
+  +
   " if we use any input elements for unselectable content, make sure they look
   " like normal text
   if !empty(s:settings.prevent_copy)