-
Notifications
You must be signed in to change notification settings - Fork 0
/
Font Colors.py
42 lines (40 loc) · 1019 Bytes
/
Font Colors.py
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
print('\033[2;31;43m CHEESY')
# [Fount Style, Text Color, Background Color]
print('\033[1;1;43m CHEESY')
#Text Styles:
# Normal 0
# Bold 1
# Light 2
# Italicized 3
# Underlined 4
# Blink 5
#Font Style Test
print("Font Style Test")
print('\033[0;30;47m TEST')
print('\033[1;30;47m TEST')
print('\033[2;30;47m TEST')
print('\033[3;30;47m TEST')
print('\033[4;30;47m TEST')
print('\033[5;30;47m TEST')
print()
#Font Color Test
print("Font Color Test")
print('\033[0;30;47m TEST')
print('\033[0;31;47m TEST')
print('\033[0;32;47m TEST')
print('\033[0;33;47m TEST')
print('\033[0;34;47m TEST')
print('\033[0;35;47m TEST')
print('\033[0;36;47m TEST')
print('\033[0;37;47m TEST')
print()
#Background Color Test
print("Background Color Test")
print('\033[0;30;40m TEST')
print('\033[0;30;41m TEST')
print('\033[0;30;42m TEST')
print('\033[0;30;43m TEST')
print('\033[0;30;44m TEST')
print('\033[0;30;45m TEST')
print('\033[0;30;46m TEST')
print('\033[0;30;47m TEST')