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

Revert "Change default yellow for preformatted text to orange"

This reverts commit 0245267d87.
This commit is contained in:
makeworld 2021-12-03 12:34:41 -05:00
parent 0245267d87
commit 599f42744e
2 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@ 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.Color172, // xterm:Orange3, #d78700
"preformatted_text": tcell.Color229, // xterm:Wheat1, #ffffaf
"list_text": tcell.ColorWhite,
}