-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): add support for standard ANSI colors theming and update def…
…ault theme (#221) Fixes #211 <img width="2554" alt="Screenshot 2025-01-06 at 13 01 57" src="https://github.com/user-attachments/assets/3706b93a-4be1-4a88-8c3e-bfb71a36db50" />
- Loading branch information
1 parent
53bd4a3
commit d7e6c35
Showing
4 changed files
with
225 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# general | ||
# background = 'black' | ||
border_fg = 'bright-black' | ||
text_fg = 'bright-blue' | ||
dimmed_text_fg = 'white' | ||
# input | ||
input_text_fg = 'bright-red' | ||
result_count_fg = 'bright-red' | ||
# results | ||
result_name_fg = 'bright-blue' | ||
result_line_number_fg = 'bright-yellow' | ||
result_value_fg = 'white' | ||
selection_bg = 'bright-black' | ||
match_fg = 'bright-red' | ||
# preview | ||
preview_title_fg = 'bright-magenta' | ||
# modes | ||
channel_mode_fg = 'green' | ||
remote_control_mode_fg = 'yellow' | ||
send_to_channel_mode_fg = 'cyan' |