diff options
author | Simon Krauter <trustablecode@gmail.com> | 2018-03-11 18:23:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-11 18:23:31 +0100 |
commit | 952084eeef6e76f2af0cff64f1ee58657b2c7e7a (patch) | |
tree | 7e8a193b645b0e1c31d2d22f67c8fd151b49b25f /config/nimdoc.cfg | |
parent | 5003942256ad1e108f7ea1a93b89b54b5ec087ba (diff) | |
download | Nim-952084eeef6e76f2af0cff64f1ee58657b2c7e7a.tar.gz |
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.
Diffstat (limited to 'config/nimdoc.cfg')
-rw-r--r-- | config/nimdoc.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nimdoc.cfg b/config/nimdoc.cfg index 8e47264ac..11d9987d8 100644 --- a/config/nimdoc.cfg +++ b/config/nimdoc.cfg @@ -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 { |