Back to Gooey

Using the Richtext Controls

docs/Using-Richtext-Controls.md

1.0.8.19.3 KB
Original Source

Using the Richtext Controls

<p align="center"> </p>

Gooey has a support for basic terminal control sequences. These let you control weight and color of the output font. For a full runnable example, checkout the code from the examples repository

You can enable this mode by passing the richtext_controls option to the Gooey decorator.

python
@Gooey(richtext_controls=True)
def main():
   ...

Usage

The colored library provides functions for adding markup controls to your text. Gooey supports the foreground (fg) and attributes (attr).

python
from colored import stylize, attr, fg

You can modify your text's output by wrapping it in the stylize function provided by colored.py. For instance, this line will be displayed as bold (attr(1)) and red (fg('red')) when rendered by Gooey.

python
print(stylize('Hello world!', fg('red') + attr('bold')))

Note that you combine the foreground and attribute functions with the + operator.

Attributes:

Richtext currently supports the following attributes:

CodeDescription
1bold
4underlined
0reset
21res_bold
24res_underlined

These can be used either via their code (attr(1)) or their verbose form (attr('bold'))

Foreground Colors:

Similar to the Attributes, foreground colors can be specified either by their code (fg(2)) or verbose form (fg('green'))

CodeDescription
0black
1red
2green
3yellow
4blue
5magenta
6cyan
7light_gray
8dark_gray
9light_red
10light_green
11light_yellow
12light_blue
13light_magenta
14light_cyan
15white
16grey_0
17navy_blue
18dark_blue
19blue_3a
20blue_3b
21blue_1
22dark_green
23deep_sky_blue_4a
24deep_sky_blue_4b
25deep_sky_blue_4c
26dodger_blue_3
27dodger_blue_2
28green_4
29spring_green_4
30turquoise_4
31deep_sky_blue_3a
32deep_sky_blue_3b
33dodger_blue_1
34green_3a
35spring_green_3a
36dark_cyan
37light_sea_green
38deep_sky_blue_2
39deep_sky_blue_1
40green_3b
41spring_green_3b
42spring_green_2a
43cyan_3
44dark_turquoise
45turquoise_2
46green_1
47spring_green_2b
48spring_green_1
49medium_spring_green
50cyan_2
51cyan_1
52dark_red_1
53deep_pink_4a
54purple_4a
55purple_4b
56purple_3
57blue_violet
58orange_4a
59grey_37
60medium_purple_4
61slate_blue_3a
62slate_blue_3b
63royal_blue_1
64chartreuse_4
65dark_sea_green_4a
66pale_turquoise_4
67steel_blue
68steel_blue_3
69cornflower_blue
70chartreuse_3a
71dark_sea_green_4b
72cadet_blue_2
73cadet_blue_1
74sky_blue_3
75steel_blue_1a
76chartreuse_3b
77pale_green_3a
78sea_green_3
79aquamarine_3
80medium_turquoise
81steel_blue_1b
82chartreuse_2a
83sea_green_2
84sea_green_1a
85sea_green_1b
86aquamarine_1a
87dark_slate_gray_2
88dark_red_2
89deep_pink_4b
90dark_magenta_1
91dark_magenta_2
92dark_violet_1a
93purple_1a
94orange_4b
95light_pink_4
96plum_4
97medium_purple_3a
98medium_purple_3b
99slate_blue_1
100yellow_4a
101wheat_4
102grey_53
103light_slate_grey
104medium_purple
105light_slate_blue
106yellow_4b
107dark_olive_green_3a
108dark_green_sea
109light_sky_blue_3a
110light_sky_blue_3b
111sky_blue_2
112chartreuse_2b
113dark_olive_green_3b
114pale_green_3b
115dark_sea_green_3a
116dark_slate_gray_3
117sky_blue_1
118chartreuse_1
119light_green_2
120light_green_3
121pale_green_1a
122aquamarine_1b
123dark_slate_gray_1
124red_3a
125deep_pink_4c
126medium_violet_red
127magenta_3a
128dark_violet_1b
129purple_1b
130dark_orange_3a
131indian_red_1a
132hot_pink_3a
133medium_orchid_3
134medium_orchid
135medium_purple_2a
136dark_goldenrod
137light_salmon_3a
138rosy_brown
139grey_63
140medium_purple_2b
141medium_purple_1
142gold_3a
143dark_khaki
144navajo_white_3
145grey_69
146light_steel_blue_3
147light_steel_blue
148yellow_3a
149dark_olive_green_3
150dark_sea_green_3b
151dark_sea_green_2
152light_cyan_3
153light_sky_blue_1
154green_yellow
155dark_olive_green_2
156pale_green_1b
157dark_sea_green_5b
158dark_sea_green_5a
159pale_turquoise_1
160red_3b
161deep_pink_3a
162deep_pink_3b
163magenta_3b
164magenta_3c
165magenta_2a
166dark_orange_3b
167indian_red_1b
168hot_pink_3b
169hot_pink_2
170orchid
171medium_orchid_1a
172orange_3
173light_salmon_3b
174light_pink_3
175pink_3
176plum_3
177violet
178gold_3b
179light_goldenrod_3
180tan
181misty_rose_3
182thistle_3
183plum_2
184yellow_3b
185khaki_3
186light_goldenrod_2a
187light_yellow_3
188grey_84
189light_steel_blue_1
190yellow_2
191dark_olive_green_1a
192dark_olive_green_1b
193dark_sea_green_1
194honeydew_2
195light_cyan_1
196red_1
197deep_pink_2
198deep_pink_1a
199deep_pink_1b
200magenta_2b
201magenta_1
202orange_red_1
203indian_red_1c
204indian_red_1d
205hot_pink_1a
206hot_pink_1b
207medium_orchid_1b
208dark_orange
209salmon_1
210light_coral
211pale_violet_red_1
212orchid_2
213orchid_1
214orange_1
215sandy_brown
216light_salmon_1
217light_pink_1
218pink_1
219plum_1
220gold_1
221light_goldenrod_2b
222light_goldenrod_2c
223navajo_white_1
224misty_rose1
225thistle_1
226yellow_1
227light_goldenrod_1
228khaki_1
229wheat_1
230cornsilk_1
231grey_100
232grey_3
233grey_7
234grey_11
235grey_15
236grey_19
237grey_23
238grey_27
239grey_30
240grey_35
241grey_39
242grey_42
243grey_46
244grey_50
245grey_54
246grey_58
247grey_62
248grey_66
249grey_70
250grey_74
251grey_78
252grey_82
253grey_85
254grey_89
255grey_93
256default