Skip to content

Commit

Permalink
4 Bit color support
Browse files Browse the repository at this point in the history
  • Loading branch information
FloSch62 authored Dec 30, 2024
1 parent 6976a16 commit df239e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clab/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,10 @@ func (c *CLab) GenerateDrawioDiagram(version string, userArgs []string) error {
Cmd: cmdArgs,
Tty: true,
OpenStdin: true,
Env: []string{"TERM=xterm-256color"},
Env: []string{
"TERM=xterm-256color",
"COLORTERM=truecolor", // 4-bit color support
},
},
&container.HostConfig{
Binds: []string{
Expand Down

0 comments on commit df239e3

Please sign in to comment.