Skip to content

Commit 6b9e0af

Browse files
committed
Updates to the theme related info given in the program
1 parent f8057e0 commit 6b9e0af

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
class Main:
17-
'''The Main class, handles as central controller and input handler of the script'''
17+
'''The Main class, handles as central controller and input handler of the program'''
1818

1919
input_method_type = ''
2020

@@ -25,7 +25,7 @@ def __init__(self):
2525

2626
@staticmethod
2727
def intro():
28-
'''Prints the program intro to the CLI and runs the correct methods to run trough the script'''
28+
'''Prints the program intro to the CLI and runs the correct methods to run trough the program'''
2929

3030
print('''#############################
3131
# #
@@ -823,7 +823,7 @@ def _end(public_theme=False):
823823
case _:
824824
pass
825825

826-
input('\nPress any key to end the script...')
826+
input('\nPress any key to end the program...')
827827

828828

829829
match __name__:

src/modules/colors.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ class Colors:
66

77
colors_info = {
88
'accentColor':
9-
' This is for all the non transparent red "boxes" in the standard theme.\n Recommended alpha value = 1.',
9+
' This is for all the non-transparent red surfaces in the foreground in the standard theme.\n Recommended alpha value = 1.',
1010

1111
'accentTextColor':
12-
' This is for all the text in those boxes.\n It is recommended that you use a color that makes it easy to be read.\n Recommended alpha value = 1.',
12+
' This is for all the text and icons in the accentColor surfaces.\n It is recommended that you use a color that makes it easy to be read.\n Recommended alpha value = 1.',
1313

1414
'foregroundColor':
15-
' This is for all the "boxes" which aren\'t red in the standard theme.\n Recommended alpha value = 1.',
15+
' This is for all the non-transparent non-red surfaces in the foreground in the standard theme.\n Recommended alpha value = 1.',
1616

1717
'backgroundColor':
1818
' This is for the background in the app.\n Recommended alpha value = 1.',
1919

2020
'overlayColor':
21-
' This is for an overlay that is visible when your library or manga view is fetching updates.\n It is recommended that you use the same color as you used for "backgroundColor".\n Recommended alpha value = 0.3',
21+
' This is for an overlay that is visible when the library or manga view is fetching updates.\n It is recommended that you use the same color as you used for "backgroundColor".\n Recommended alpha value = 0.3',
2222

2323
'separatorColor':
2424
' This is for all the thin seperator lines in the app.\n It is recommended that you use the same color as you did for "accentColor".\n Recommended alpha value = 1.',
@@ -30,10 +30,10 @@ class Colors:
3030
' This is for all the secondary text in the app.\n Recommended alpha value = 1.',
3131

3232
'buttonNormalBackgroundColor':
33-
' This is for all the semi-transparent red refresh buttons in the standard theme.\n Recommended alpha value = 0.3',
33+
' This is for all the semi-transparent red surfaces in the foreground in the standard theme.\n Recommended alpha value = 0.5',
3434

3535
'buttonNormalTextColor':
36-
' This is for all the refresh icons in those boxes.\n It is recommended that you use a color that makes it easy to be read.\n Recommended alpha value = 0.3.'
36+
' This is for all the icons in the buttonNormalBackgroundColor surfaces.\n It is recommended that you use a color that makes it easy to be read.\n Recommended alpha value = 1.'
3737
}
3838
modes = ['light', 'dark']
3939
colors_values = {

0 commit comments

Comments
 (0)