[QT] thumbnail polish + log colors #3446
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@AniLeo in case you want to change the color in your stylesheet let me know and I'll append it
Example use in stylesheet:
QLabel#thumbnail_icon_color { color: rgba(100, 100, 100, 255); }
QTextEdit#tty_frame { background-color: #ffffff; }
QTextEdit#log_frame { background-color: #ffffff; }
QLabel#log_level_always { color: #107896; }
QLabel#log_level_fatal { color: #ff00ff; }
QLabel#log_level_error { color: #C02F1D; }
QLabel#log_level_todo { color: #ff6000; }
QLabel#log_level_success { color: #8000; }
QLabel#log_level_warning { color: #BA8745; }
QLabel#log_level_notice { color: #000000; }
QLabel#log_level_trace { color: #808080; }
QLabel#log_stack { color: #000000; }
I also made the default stylesheet code a bit more readable