1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-01 18:31:08 +00:00

Change default yellow for preformatted text to orange

This commit is contained in:
makeworld 2021-12-03 12:00:34 -05:00
parent 5098f125a1
commit 0245267d87
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Specifying `default` in the theme config uses the terminal's default background color, including transparency (#244, #245)
- Redirects occur automatically if it only adds a trailing slash (#271)
- Non-gemini links are underlined by default to help color blind users (#189)
- Default yellow for preformatted text was changed to orange, which is more visible with white terminal backgrounds (#189)
### Changed
- Bookmarks are stored using XML in the XBEL format, old bookmarks are transferred (#68)

View File

@ -61,7 +61,7 @@ var theme = map[string]tcell.Color{
"link_number": tcell.ColorSilver,
"regular_text": tcell.ColorWhite,
"quote_text": tcell.ColorWhite,
"preformatted_text": tcell.Color229, // xterm:Wheat1, #ffffaf
"preformatted_text": tcell.Color172, // xterm:Orange3, #d78700
"list_text": tcell.ColorWhite,
}