.IR color ]
.RB [ \-sf
.IR color ]
+.RB [ \-ob
+.IR color ]
+.RB [ \-of
+.IR color ]
.RB [ \-w
.IR windowid ]
.P
.BI \-sf " color"
defines the selected foreground color.
.TP
+.BI \-ob " color"
+defines the outline background color (for multiple selection).
+.TP
+.BI \-of " color"
+defines the outline foreground color (for multiple selection).
+.TP
.B \-v
prints version information to stdout, then exits.
.TP
colors[SchemeSel][ColBg] = argv[++i];
else if (!strcmp(argv[i], "-sf")) /* selected foreground color */
colors[SchemeSel][ColFg] = argv[++i];
+ else if (!strcmp(argv[i], "-ob")) /* outline background color */
+ colors[SchemeOut][ColBg] = argv[++i];
+ else if (!strcmp(argv[i], "-of")) /* outline foreground color */
+ colors[SchemeOut][ColFg] = argv[++i];
else if (!strcmp(argv[i], "-w")) /* embedding window id */
embed = argv[++i];
else