Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356d9f3 commit de1f880Copy full SHA for de1f880
Snippets.md
@@ -194,10 +194,16 @@ echo -e "Name\t\tNumber"; echo -e "Scott\t\t123"
194
echo -e "This text\nbreaks over\nthree lines"
195
echo -e "\a"
196
echo -e "Ding\a"
197
+```
198
+
199
+```bash
200
+#!/usr/bin/env bash
201
echo -e "\033[33;44mColor Text\033[0m"
-echo -e "\033[91;100mColor Text\033[0m"
-echo -e "\033[91;100mColor Text"
-echo -e "\033[33;44mColor Text"
202
+echo -e "\033[30;42mColor Text\033[0m"
203
+echo -e "\033[41;105mColor Text"
204
+echo "some text that shouldn't have styling"
205
+echo -e "\033[0m"
206
207
echo -e "\033[4;31;40mERROR:\033[0m\033[31;40m Something went wrong.\033[0m"
208
```
209
0 commit comments