@fresh-editor/fresh-editor 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +84 -0
- package/package.json +1 -1
- package/plugins/config-schema.json +9 -1
- package/plugins/diagnostics_panel.ts +4 -0
- package/plugins/find_references.ts +4 -0
- package/plugins/git_explorer.ts +9 -1
- package/plugins/lib/finder.ts +81 -10
- package/plugins/lib/fresh.d.ts +40 -4
- package/plugins/live_grep.i18n.json +42 -14
- package/plugins/live_grep.ts +491 -41
- package/plugins/markdown_compose.ts +17 -3
- package/plugins/schemas/theme.schema.json +462 -12
- package/plugins/search_replace.ts +5 -0
- package/plugins/theme_editor.i18n.json +112 -0
- package/plugins/theme_editor.ts +58 -50
- package/themes/dark.json +2 -0
- package/themes/high-contrast.json +2 -0
- package/themes/light.json +2 -0
- package/themes/nord.json +5 -0
- package/themes/nostalgia.json +2 -0
- package/themes/solarized-dark.json +5 -0
- package/themes/terminal.json +128 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "terminal",
|
|
3
|
+
"editor": {
|
|
4
|
+
"bg": "Default",
|
|
5
|
+
"fg": "Default",
|
|
6
|
+
"cursor": "Default",
|
|
7
|
+
"inactive_cursor": "DarkGray",
|
|
8
|
+
"selection_bg": "Default",
|
|
9
|
+
"selection_modifier": ["reversed"],
|
|
10
|
+
"current_line_bg": "Default",
|
|
11
|
+
"line_number_fg": "DarkGray",
|
|
12
|
+
"line_number_bg": "Default",
|
|
13
|
+
"diff_add_bg": "Green",
|
|
14
|
+
"diff_remove_bg": "Red",
|
|
15
|
+
"diff_add_highlight_bg": "LightGreen",
|
|
16
|
+
"diff_remove_highlight_bg": "LightRed",
|
|
17
|
+
"diff_modify_bg": "Yellow",
|
|
18
|
+
"ruler_bg": "DarkGray",
|
|
19
|
+
"whitespace_indicator_fg": "DarkGray",
|
|
20
|
+
"after_eof_bg": "Default"
|
|
21
|
+
},
|
|
22
|
+
"ui": {
|
|
23
|
+
"tab_active_fg": "Yellow",
|
|
24
|
+
"tab_active_bg": "Default",
|
|
25
|
+
"tab_inactive_fg": "Gray",
|
|
26
|
+
"tab_inactive_bg": "Default",
|
|
27
|
+
"tab_separator_bg": "Default",
|
|
28
|
+
"tab_close_hover_fg": "Red",
|
|
29
|
+
"tab_hover_bg": "DarkGray",
|
|
30
|
+
"menu_bg": "Default",
|
|
31
|
+
"menu_fg": "Default",
|
|
32
|
+
"menu_active_bg": "Blue",
|
|
33
|
+
"menu_active_fg": "White",
|
|
34
|
+
"menu_dropdown_bg": "Default",
|
|
35
|
+
"menu_dropdown_fg": "Default",
|
|
36
|
+
"menu_highlight_bg": "Blue",
|
|
37
|
+
"menu_highlight_fg": "White",
|
|
38
|
+
"menu_border_fg": "DarkGray",
|
|
39
|
+
"menu_separator_fg": "DarkGray",
|
|
40
|
+
"menu_hover_bg": "DarkGray",
|
|
41
|
+
"menu_hover_fg": "White",
|
|
42
|
+
"menu_disabled_fg": "DarkGray",
|
|
43
|
+
"menu_disabled_bg": "Default",
|
|
44
|
+
"status_bar_fg": "Default",
|
|
45
|
+
"status_bar_bg": "Default",
|
|
46
|
+
"status_palette_fg": "White",
|
|
47
|
+
"status_palette_bg": "Magenta",
|
|
48
|
+
"status_lsp_on_fg": "Default",
|
|
49
|
+
"status_lsp_on_bg": "Default",
|
|
50
|
+
"status_lsp_actionable_fg": "Black",
|
|
51
|
+
"status_lsp_actionable_bg": "Yellow",
|
|
52
|
+
"prompt_fg": "Default",
|
|
53
|
+
"prompt_bg": "Default",
|
|
54
|
+
"prompt_selection_fg": "White",
|
|
55
|
+
"prompt_selection_bg": "Blue",
|
|
56
|
+
"popup_border_fg": "Gray",
|
|
57
|
+
"popup_bg": "Default",
|
|
58
|
+
"popup_selection_bg": "Blue",
|
|
59
|
+
"popup_selection_fg": "White",
|
|
60
|
+
"popup_text_fg": "Default",
|
|
61
|
+
"suggestion_bg": "Default",
|
|
62
|
+
"suggestion_selected_bg": "Blue",
|
|
63
|
+
"help_bg": "Default",
|
|
64
|
+
"help_fg": "Default",
|
|
65
|
+
"help_key_fg": "Cyan",
|
|
66
|
+
"help_separator_fg": "DarkGray",
|
|
67
|
+
"help_indicator_fg": "Red",
|
|
68
|
+
"help_indicator_bg": "Default",
|
|
69
|
+
"inline_code_bg": "DarkGray",
|
|
70
|
+
"split_separator_fg": "DarkGray",
|
|
71
|
+
"split_separator_hover_fg": "Cyan",
|
|
72
|
+
"scrollbar_track_fg": "DarkGray",
|
|
73
|
+
"scrollbar_thumb_fg": "Gray",
|
|
74
|
+
"scrollbar_track_hover_fg": "Gray",
|
|
75
|
+
"scrollbar_thumb_hover_fg": "White",
|
|
76
|
+
"compose_margin_bg": "Default",
|
|
77
|
+
"semantic_highlight_bg": "Default",
|
|
78
|
+
"semantic_highlight_modifier": ["bold", "underlined"],
|
|
79
|
+
"terminal_bg": "Default",
|
|
80
|
+
"terminal_fg": "Default",
|
|
81
|
+
"status_warning_indicator_bg": "Yellow",
|
|
82
|
+
"status_warning_indicator_fg": "Black",
|
|
83
|
+
"status_error_indicator_bg": "Red",
|
|
84
|
+
"status_error_indicator_fg": "White",
|
|
85
|
+
"status_warning_indicator_hover_bg": "LightYellow",
|
|
86
|
+
"status_warning_indicator_hover_fg": "Black",
|
|
87
|
+
"status_error_indicator_hover_bg": "LightRed",
|
|
88
|
+
"status_error_indicator_hover_fg": "White",
|
|
89
|
+
"tab_drop_zone_bg": "Blue",
|
|
90
|
+
"tab_drop_zone_border": "Cyan",
|
|
91
|
+
"settings_selected_bg": "Blue",
|
|
92
|
+
"settings_selected_fg": "White",
|
|
93
|
+
"file_status_added_fg": "Green",
|
|
94
|
+
"file_status_modified_fg": "Yellow",
|
|
95
|
+
"file_status_deleted_fg": "Red",
|
|
96
|
+
"file_status_renamed_fg": "Cyan",
|
|
97
|
+
"file_status_untracked_fg": "Gray",
|
|
98
|
+
"file_status_conflicted_fg": "Magenta"
|
|
99
|
+
},
|
|
100
|
+
"search": {
|
|
101
|
+
"match_bg": "Yellow",
|
|
102
|
+
"match_fg": "Black",
|
|
103
|
+
"label_bg": "Magenta",
|
|
104
|
+
"label_fg": "White"
|
|
105
|
+
},
|
|
106
|
+
"diagnostic": {
|
|
107
|
+
"error_fg": "Red",
|
|
108
|
+
"error_bg": "Default",
|
|
109
|
+
"warning_fg": "Yellow",
|
|
110
|
+
"warning_bg": "Default",
|
|
111
|
+
"info_fg": "Blue",
|
|
112
|
+
"info_bg": "Default",
|
|
113
|
+
"hint_fg": "Gray",
|
|
114
|
+
"hint_bg": "Default"
|
|
115
|
+
},
|
|
116
|
+
"syntax": {
|
|
117
|
+
"keyword": "Red",
|
|
118
|
+
"string": "Green",
|
|
119
|
+
"comment": "DarkGray",
|
|
120
|
+
"function": "Blue",
|
|
121
|
+
"type": "Yellow",
|
|
122
|
+
"variable": "Default",
|
|
123
|
+
"constant": "Magenta",
|
|
124
|
+
"operator": "Default",
|
|
125
|
+
"punctuation_bracket": "Default",
|
|
126
|
+
"punctuation_delimiter": "Default"
|
|
127
|
+
}
|
|
128
|
+
}
|