-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch_colors.bat
404 lines (322 loc) · 8.89 KB
/
batch_colors.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
@echo off
color 0a
title Batch Colour Help, Using Batch
echo This Batch file Will Tell You What Letter Or Number Is the Code For The Colour You Would Like
echo Obviously You Have To write color As The Batch file Code Before You can Type The Corresponding Letters And Numbers For The Colours
pause
cls
:start
cls
color 1a
echo Choose The respective Number For The Colour You Would Like
echo.
echo.
echo.
echo (1).............Black
echo.
echo (2).............Dark Blue
echo.
echo (3).............Dark Green
echo.
echo (4).............Dark Aqua
echo.
echo (5).............Dark Red
echo.
echo (6).............Dark Purple
echo.
echo (7).............Dark Yellow
echo.
echo (8).............Dark White
echo.
echo (9).............Grey
echo.
echo (10)............Bright Blue
echo.
echo (11)............Bright Green
echo.
echo (12)............Bright Aqua
echo.
echo (13)............Bright Red
echo.
echo (14)............Pink
echo.
echo (15)............Bright Yellow
echo.
echo (16)............Bright White
echo.
echo.
echo !!Remember The First Number Or Letter (That Is The Code For A Colour)Is The Background Colour!!
echo !!And The Second Number Or Letter Will Be The Text Colour!!
set input=
set /p input= Corresponding Number:
if %input%==1 goto black if NOT goto start
if %input%==2 goto db if NOT goto start
if %input%==3 goto dg if NOT goto start
if %input%==4 goto a if NOT goto start
if %input%==5 goto dr if NOT goto start
if %input%==6 goto dp if NOT goto start
if %input%==7 goto dy if NOT goto start
if %input%==8 goto dw if NOT goto start
if %input%==9 goto g if NOT goto start
if %input%==10 goto bb if NOT goto start
if %input%==11 goto bg if NOT goto start
if %input%==12 goto ba if NOT goto start
if %input%==13 goto br if NOT goto start
if %input%==14 goto p if NOT goto start
if %input%==15 goto by if NOT goto start
if %input%==16 goto bw if NOT goto start
exit
:black
cls
color f0
echo BLACK
echo.
echo The Code For Black is:
echo.
echo color 0
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:a
cls
color 03
echo DARK AQUA
echo.
echo The Code For Aqua is:
echo.
echo color 3
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:db
cls
color 01
echo DARK BLUE
echo.
echo The Code For Dark Blue is:
echo.
echo color 1
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:dg
cls
color 02
echo DARK GREEN
echo.
echo The Code For Dark Green is:
echo.
echo color 2
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exitt
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:dp
cls
color 05
echo DARK PURPLE
echo.
echo The Code For Dark purple is:
echo.
echo color 5
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:dr
cls
color 04
echo DARK RED
echo.
echo The Code For Dark Red is:
echo.
echo color 4
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:dw
cls
color 07
echo DARK WHITE
echo.
echo The Code For Dark White is:
echo.
echo color 7
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:dy
cls
color 06
echo DARK YELLOW
echo.
echo The Code For Dark Yellow is:
echo.
echo color 6
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:g
cls
color 08
echo GREY
echo.
echo The Code For grey is:
echo.
echo color 8
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:ba
cls
color 0b
echo BRIGHT AQUA
echo The Code For Bright Aqua is:
echo color b
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:bb
cls
color 09
echo BRIGHT BLUE
echo.
echo The Code For Bright Blue is:
echo.
echo color 9
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:bg
cls
color 0a
echo BRIGHT GREEN
echo.
echo The Code For Bright Green is:
echo.
echo color a
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:br
cls
color 0c
echo BRIGHT RED
echo.
echo The Code For Bright Red is:
echo.
echo color c
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:bw
cls
color 0f
echo BRIGHT WHITE
echo.
echo The Code For Bright White is:
echo.
echo color f
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:by
cls
color 0e
echo BRIGHT YELLOW
echo.
echo The Code For Bright Yellow is:
echo.
echo color e
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
:p
cls
color 0d
echo PINK
echo.
echo The Code For Pink is:
echo.
echo color d
echo.
echo What Would You like To Do Now?
echo (1)...Go to Start
echo (enter)...Exit
set input=
set /p input= Choice:
if %input%==1 goto start
exit
echo Source "https://www.instructables.com/id/Batch-Colours-Using-Batch/"