taskbook
taskbook copied to clipboard
Add the ability to customize grey text
- Support the issue https://github.com/klauscfhq/taskbook/issues/30, https://github.com/klauscfhq/taskbook/issues/24 and https://github.com/klauscfhq/taskbook/issues/23
- Update document and default configuration.
Result: Before and After by using magentaBright
I foresee later requests for config of the other colors as well. 🔮
I need this! Just removed Taskbook because that gray text is almost invisible in my terminal.
For a hacky dirty fix before this PR is accepted, you can manually edit lib/render.js
, and change line 9 from
const {blue, green, grey, magenta, red, underline, yellow} = chalk;
to
const {blue, green, magenta, red, underline, yellow} = chalk;
const grey = chalk.whiteBright; // or whatever color you want
When can we expect this to be reviewed/fixed and merged? I really need this as well, since I'm using grey background in my terminal... :-/
still need this fix to be merged...
guess alot of users got a dark terminal theme :)
/edit
@thornjad you also have to change const
to let
otherwise it wont let your redefine the var :)
@breuerfelix you can certainly use let
if you'd like to redefine it! I prefer to use const
whenever possible.
@breuerfelix you can certainly use
let
if you'd like to redefine it! I prefer to useconst
whenever possible.
i just realised that you took grey out of the deconstructor ... i wasnt able to redefine cause i didnt remove it from there :D
sorry for being blind :D
@breuerfelix oh no problem, I should have realized that was our disconnect! I was a bit distracted yesterday.
Sadly, seems like this project has become dead... :-/
All PRs and issues will be addressed shortly. The development of Taskbook has not been terminated and will never be.
Any news on this? :) Would be awesome to have that feature