#111 more contrasted colors for alert and emergency (#112)

* Set alert and emergency colors to more readable values

* Add entry to CHANGELOG.md about #111
This commit is contained in:
gmeral 2019-09-20 11:43:30 +02:00 committed by Kevin van Zonneveld
parent 95b9cb1469
commit ea57d157c7
2 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ Released: TBA.
- [x] Fix typo in FAQ (#92, @gmasse)
- [x] Fix Travis CI failure on src/templater.sh (@gmasse)
- [x] Add magic variable which contains full command invocation
- [x] More contrasted alert and emergency colors (#111 @gmeral)
- [x] Add support for repeatable arguments (@genesiscloud)
- [x] Fix remaining warnings with shellcheck v0.7.0 (#107, @genesiscloud)

View File

@ -75,9 +75,9 @@ function __b3bp_log () {
# shellcheck disable=SC2034
local color_critical="\\x1b[1;31m"
# shellcheck disable=SC2034
local color_alert="\\x1b[1;33;41m"
local color_alert="\\x1b[1;37;41m"
# shellcheck disable=SC2034
local color_emergency="\\x1b[1;4;5;33;41m"
local color_emergency="\\x1b[1;4;5;37;41m"
local colorvar="color_${log_level}"