zutils/pkg/colors/colors.go
selamanapps 349e60924d feat: add z tree command with gitignore and hidden file support
New command z tree displays directory structure with:
- Hidden directories shown as collapsed folders with their immediate size
- Gitignored files marked with [ignored by git] label
- File sizes shown for all files and collapsed dirs
- Directories colored cyan, files in white

Also added White color constant to pkg/colors for tree command.
2026-05-02 02:10:14 +03:00

17 lines
333 B
Go

package colors
const (
Reset = "\033[0m"
Red = "\033[31m"
Green = "\033[32m"
Yellow = "\033[33m"
Blue = "\033[34m"
Purple = "\033[35m"
Cyan = "\033[36m"
White = "\033[97m"
Gray = "\033[90m"
Bold = "\033[1m"
Italic = "\033[3m"
Dim = "\033[2m"
Underline = "\033[4m"
)