Skip to content

Commit c05fc2d

Browse files
authored
4 Bit color support (srl-labs#2367)
1 parent 6976a16 commit c05fc2d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

clab/graph.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,10 @@ func (c *CLab) GenerateDrawioDiagram(version string, userArgs []string) error {
345345
Cmd: cmdArgs,
346346
Tty: true,
347347
OpenStdin: true,
348-
Env: []string{"TERM=xterm-256color"},
348+
Env: []string{
349+
"TERM=xterm-256color",
350+
"COLORTERM=truecolor", // 4-bit color support
351+
},
349352
},
350353
&container.HostConfig{
351354
Binds: []string{

0 commit comments

Comments
 (0)