Color Configuration
taskwarrior-tui reads color values from your Taskwarrior taskrc file (default: ~/.taskrc).

For example, color.active is used to style the active task. If you would like to try it, open your taskrc file and change color.active=white on blue.
So color.active will take precedence over color.overdue. You can see what color.active is by running task show color.active in your shell.
The following color attributes are supported:
color.deletedcolor.completedcolor.activecolor.overduecolor.scheduledcolor.due.todaycolor.duecolor.blockedcolor.blockingcolor.recurringcolor.taggedColor Formats
Section titled “Color Formats”All color formats supported by Taskwarrior are recognized:
Named colors (16-color)
Section titled “Named colors (16-color)”black red green yellow blue magenta cyan whiteUse on <color> to set the background:
red on blue # red foreground, blue backgroundon yellow # default foreground, yellow backgroundHigh-intensity (bright) colors
Section titled “High-intensity (bright) colors”Use the bright prefix on backgrounds to get the high-intensity variant (terminal colors 8-15):
black on bright green # bright green backgroundwhite on bright black # bright black (dark gray) background256-color indexed
Section titled “256-color indexed”Use color0 through color255 to access the full 256-color palette:
color196 # bright redcolor60 on color60 # foreground and background using index 60Grayscale ramp
Section titled “Grayscale ramp”Use gray0 through gray23 (or grey0-grey23) to access the 24-step grayscale ramp (terminal colors 232-255):
gray5 # dark gray (Color::Indexed(237))white on gray10 # white text on mid-gray backgroundRGB color cube
Section titled “RGB color cube”Use rgbRGB where R, G, and B are each a digit from 0 to 5 to address the 6x6x6 color cube (terminal colors 16-231):
rgb500 # bright red (Color::Indexed(196))rgb050 # bright greenrgb005 # bright bluergb444 # medium gray-ishModifiers
Section titled “Modifiers”The following text modifiers can be combined with any color:
| Modifier | Effect |
|---|---|
bold | Bold text |
underline | Underlined text |
inverse | Swapped foreground/background |
italic | Italic text |
strikethrough | Strikethrough text |
Multiple modifiers can be combined:
bold underline red on blueitalic color111 on color60bold vs bright
Section titled “bold vs bright”boldis a text attribute. It makes text bold and uses the regular color index.brightis a color variant. For backgrounds, it selects the high-intensity color (index + 8).
bold red # regular red (#1) + bold attributeon bright red # high-intensity red background (#9)bold on bright red # bold text + high-intensity red backgroundExample: TokyoNight Moon Theme
Section titled “Example: TokyoNight Moon Theme”color.active=color111 on color60color.overdue=color203color.due.today=color215color.due=color111color.blocked=color245color.tagged=color141color.recurring=color147color.scheduled=color109See advanced configuration for TUI-specific style keys.