ElCap Documentation
Loading...
Searching...
No Matches
Accessibility

Overview


This page documents accessibility-related settings available in ElCap.

Disabling Color Output


ElCap disables color and styling in its console output when the NO_COLOR environment variable is set (to any value), which can help with terminals or screen readers that don't handle ANSI color codes well.

To disable color output, set the NO_COLOR environment variable before running elcap:

Windows (PowerShell)

$env:NO_COLOR = "1"
elcap

Linux and macOS

export NO_COLOR=1
elcap