dotfiles/scripts/show_color_palette.sh

7 lines
160 B
Bash
Raw Normal View History

2024-01-25 09:53:09 +01:00
#!/bin/bash
# Zeigt die Farben mit Beschriftung an
for (( i = 30; i < 38; i++ )); do
echo -e "\033[0;"$i"m Normal: (0;$i); \033[1;"$i"m Light: (1;$i)";
done