Lines Matching full:color
31 .Nm color.lua
32 .Nd FreeBSD color module
41 .Dl local color = require("color")
43 The following color constants are exported from
45 .Bl -tag -width "Ic color.MAGENTA" -offset indent
46 .It Ic color.BLACK
47 .It Ic color.RED
48 .It Ic color.GREEN
49 .It Ic color.YELLOW
50 .It Ic color.BLUE
51 .It Ic color.MAGENTA
52 .It Ic color.CYAN
53 .It Ic color.WHITE
58 .Bl -tag -width "Ic color.DEFAULT" -offset indent
59 .It Ic color.DEFAULT
60 .It Ic color.BRIGHT
61 .It Ic color.DIM
66 .Bl -tag -width "Fn color.isEnabled" -offset indent
67 .It Fn color.isEnabled
70 has been configured to not allow color, False otherwise.
76 .It Fn color.escapefg color_value
79 as a foreground color.
80 .Fn color.escapefg
81 returns an empty string if color is disabled.
82 .It Fn color.resetfg
83 Returns the escape sequence for the default foreground color.
84 .Fn color.resetfg
85 returns an empty string if color is disabled.
86 .It Fn color.escapebg color_value
89 as a background color.
90 .Fn color.escapebg
91 returns an empty string if color is disabled.
92 .It Fn color.resetbg
93 Returns the escape sequence for the default background color.
94 .Fn color.resetbg
95 returns an empty string if color is disabled.
96 .It Fn color.escape fg_color bg_color attribute
99 as the foreground color,
101 as the background color, and
104 .Fn color.escape
105 returns an empty string if color is disabled.
106 .It Fn color.default
107 Returns the escape sequence for the default color scheme, white on black with
109 .Fn color.default
110 returns an empty string if color is disabled.
111 .It Fn color.highlight str
115 .Ic color.BRIGHT
117 .Fn color.highlight
120 if color is disabled.