diff options
author | bptato <nincsnevem662@gmail.com> | 2024-02-25 15:55:01 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-02-25 16:04:16 +0100 |
commit | d4e96dcca1521a716324f74e360b3cf798732256 (patch) | |
tree | 6eeb84f463ba73aa6d8c2b139a9ba3b079199fa9 /res | |
parent | 36c7878bd71058b1c16a9e1ef2fd7e60bbf40fde (diff) | |
download | chawan-d4e96dcca1521a716324f74e360b3cf798732256.tar.gz |
ua.css: use ANSI yellow for links
This was my original intention, but there wasn't a way to do it until now. The difference is that this respects user-configured color values. (Now that I think of it, it may be better to automatically detect prefers-color-scheme based on the default background color, and then use blue for bright backgrounds and yellow for dark backgrounds. Hmm.)
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/ua.css b/res/ua.css index 43cccc71..389936d1 100644 --- a/res/ua.css +++ b/res/ua.css @@ -207,7 +207,7 @@ p { } a[href] { - color: yellow; + color: -cha-ansi(yellow); } a[href]:hover { |