mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
Fix background-color in nimdoc.cfg
Don't assume, that the default background-color is white. My default background-color is dark, which makes the documentation hardly readable: https://i.imgur.com/xN0UjWz.png The reason is the transparency of the existing color (rgba(252, 248, 244, 0.45);) Fixed by removing the transparency.
This commit is contained in:
@@ -229,7 +229,7 @@ body {
|
||||
line-height: 20px;
|
||||
color: #444;
|
||||
letter-spacing: 0.15px;
|
||||
background-color: rgba(252, 248, 244, 0.45); }
|
||||
background-color: #FDFBFA; }
|
||||
|
||||
/* Skeleton grid */
|
||||
.container {
|
||||
|
||||
Reference in New Issue
Block a user