@fresh-editor/fresh-editor 0.1.71 → 0.1.75
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 +52 -0
- package/package.json +1 -1
- package/plugins/audit_mode.i18n.json +63 -0
- package/plugins/buffer_modified.i18n.json +5 -0
- package/plugins/calculator.i18n.json +7 -0
- package/plugins/clangd_support.i18n.json +17 -0
- package/plugins/color_highlighter.i18n.json +11 -0
- package/plugins/config-schema.json +8 -1
- package/plugins/csharp_support.i18n.json +6 -0
- package/plugins/diagnostics_panel.i18n.json +18 -0
- package/plugins/find_references.i18n.json +21 -0
- package/plugins/git_blame.i18n.json +38 -0
- package/plugins/git_find_file.i18n.json +24 -0
- package/plugins/git_grep.i18n.json +13 -0
- package/plugins/git_gutter.i18n.json +7 -0
- package/plugins/git_log.i18n.json +35 -0
- package/plugins/lib/fresh.d.ts +26 -3
- package/plugins/live_grep.i18n.json +13 -0
- package/plugins/markdown_compose.i18n.json +17 -0
- package/plugins/merge_conflict.i18n.json +63 -0
- package/plugins/path_complete.i18n.json +6 -0
- package/plugins/search_replace.i18n.json +31 -0
- package/plugins/test_i18n.i18n.json +5 -0
- package/plugins/theme_editor.i18n.json +289 -1
- package/plugins/theme_editor.ts +53 -26
- package/plugins/todo_highlighter.i18n.json +14 -0
- package/plugins/vi_mode.i18n.json +119 -0
- package/plugins/welcome.i18n.json +18 -0
- package/themes/dark.json +102 -0
- package/themes/high-contrast.json +102 -0
- package/themes/light.json +102 -0
- package/themes/nostalgia.json +102 -0
|
@@ -594,6 +594,125 @@
|
|
|
594
594
|
"cmd.redo": "Refaire",
|
|
595
595
|
"cmd.join_lines": "Joindre lignes"
|
|
596
596
|
},
|
|
597
|
+
"it": {
|
|
598
|
+
"mode.normal": "NORMALE",
|
|
599
|
+
"mode.insert": "INSERIMENTO",
|
|
600
|
+
"mode.operator": "OPERATORE",
|
|
601
|
+
"mode.find": "TROVA",
|
|
602
|
+
"mode.visual": "VISUALE",
|
|
603
|
+
"mode.visual_line": "VISUALE RIGA",
|
|
604
|
+
"mode.visual_block": "VISUALE BLOCCO",
|
|
605
|
+
|
|
606
|
+
"status.enabled": "Modalità Vi abilitata - NORMALE",
|
|
607
|
+
"status.disabled": "Modalità Vi disabilitata",
|
|
608
|
+
"status.loaded": "Plugin modalità Vi caricato. Usa il comando 'Alterna modalità Vi' per abilitarlo.",
|
|
609
|
+
"status.yanked_lines": "Copiate %{count} righe",
|
|
610
|
+
"status.no_change_to_repeat": "Nessuna modifica da ripetere",
|
|
611
|
+
"status.replace_not_implemented": "Sostituzione carattere non ancora implementata",
|
|
612
|
+
"status.file_saved": "File salvato",
|
|
613
|
+
"status.file_reverted": "File ripristinato",
|
|
614
|
+
"status.file_reverted_discarded": "File ripristinato (modifiche scartate)",
|
|
615
|
+
"status.all_files_saved": "Tutti i file salvati",
|
|
616
|
+
"status.line_numbers_on": "Numeri di riga attivati",
|
|
617
|
+
"status.line_numbers_off": "Numeri di riga disattivati",
|
|
618
|
+
"status.line_wrap_toggled": "Andata a capo automatica alternata",
|
|
619
|
+
"status.syntax_always_on": "L'evidenziazione della sintassi è sempre attiva",
|
|
620
|
+
"status.line_beyond_end": "Riga %{line} oltre la fine del file, spostato alla fine",
|
|
621
|
+
|
|
622
|
+
"error.no_write_since_change": "Non salvato dall'ultima modifica (usa %{cmd} per forzare)",
|
|
623
|
+
"error.not_valid_command": "Comando non valido: %{cmd}",
|
|
624
|
+
"error.unknown_command": "Comando sconosciuto: %{cmd}",
|
|
625
|
+
"error.command_no_bang": "Il comando non accetta !: %{cmd}",
|
|
626
|
+
"error.save_as_not_implemented": "Salva come non implementato. Usa :w per salvare il file corrente.",
|
|
627
|
+
"error.shell_not_supported": "Comandi shell non supportati (usa il terminale)",
|
|
628
|
+
"error.buffer_not_found": "Buffer %{id} non trovato",
|
|
629
|
+
"error.multiple_buffers_match": "Più buffer corrispondono a \"%{pattern}\". Sii più specifico.",
|
|
630
|
+
"error.no_buffer_matching": "Nessun buffer corrispondente a \"%{pattern}\"",
|
|
631
|
+
"error.rename_not_implemented": "Rinomina buffer non implementata",
|
|
632
|
+
"error.substitute_not_implemented": "Sostituzione non implementata. Usa Ctrl+H per cerca/sostituisci.",
|
|
633
|
+
"error.global_not_implemented": "Comando globale non implementato",
|
|
634
|
+
"error.set_usage": "Utilizzo: :set opzione o :set opzione=valore",
|
|
635
|
+
"error.cannot_change_directory": "Impossibile cambiare directory (la cwd dell'editor è fissa)",
|
|
636
|
+
"error.marks_not_implemented": "Segnalibri non implementati",
|
|
637
|
+
"error.registers_not_implemented": "Registri non implementati (Fresh usa gli appunti di sistema)",
|
|
638
|
+
"error.jump_list_not_implemented": "Lista salti non implementata",
|
|
639
|
+
"error.syntax_cannot_disable": "L'evidenziazione della sintassi non può essere disabilitata",
|
|
640
|
+
"error.read_not_implemented": "Lettura file nel buffer non implementata. Usa :e per aprire i file.",
|
|
641
|
+
"error.saveas_not_implemented": "Salva come non implementato. Usa Ctrl+Shift+S o il menu.",
|
|
642
|
+
"error.use_terminal": "Usa il terminale per i comandi di build",
|
|
643
|
+
"error.line_must_be_positive": "Il numero di riga deve essere positivo",
|
|
644
|
+
"error.cannot_read_buffer": "Impossibile leggere il buffer",
|
|
645
|
+
"error.no_buffer": "Nessun buffer",
|
|
646
|
+
"error.unknown_option": "Opzione sconosciuta: %{option}",
|
|
647
|
+
"error.no_selection_for_motion": "Nessun equivalente di selezione per il movimento: %{motion}",
|
|
648
|
+
|
|
649
|
+
"info.buffer": "Buffer %{id}: %{name}",
|
|
650
|
+
"info.file": "\"%{path}\"%{modified} riga %{line}, %{bytes} byte",
|
|
651
|
+
"info.modified": " [Modificato]",
|
|
652
|
+
"info.no_name": "[Senza nome]",
|
|
653
|
+
"info.no_buffers": "Nessun buffer",
|
|
654
|
+
"info.help_not_available": "Aiuto per \"%{topic}\" non disponibile. Prova :help per la lista dei comandi.",
|
|
655
|
+
"info.help_commands": "Comandi: :w :q :wq :q! :e :sp :vs :bn :bp :bd :b :ls :set :noh :123 :help",
|
|
656
|
+
"info.version": "Fresh Editor con plugin modalità Vi",
|
|
657
|
+
"info.close_diagnostics": "Usa :bd per chiudere il pannello diagnostica",
|
|
658
|
+
"info.use_search_dialog": "Usa la finestra di ricerca per cercare: %{pattern}",
|
|
659
|
+
"info.status_bar_char": "Usa la barra di stato per informazioni sui caratteri",
|
|
660
|
+
|
|
661
|
+
"cmd.toggle_vi_mode": "Alterna modalità Vi",
|
|
662
|
+
"cmd.toggle_vi_mode_desc": "Abilita o disabilita l'editing modale in stile vi",
|
|
663
|
+
|
|
664
|
+
"cmd.move_left": "Sposta a sinistra",
|
|
665
|
+
"cmd.move_down": "Sposta in basso",
|
|
666
|
+
"cmd.move_up": "Sposta in alto",
|
|
667
|
+
"cmd.move_right": "Sposta a destra",
|
|
668
|
+
"cmd.move_word": "Sposta alla parola successiva",
|
|
669
|
+
"cmd.move_word_back": "Sposta alla parola precedente",
|
|
670
|
+
"cmd.move_word_end": "Sposta alla fine della parola",
|
|
671
|
+
"cmd.move_line_start": "Sposta all'inizio della riga",
|
|
672
|
+
"cmd.move_line_end": "Sposta alla fine della riga",
|
|
673
|
+
"cmd.move_doc_start": "Sposta all'inizio del documento",
|
|
674
|
+
"cmd.move_doc_end": "Sposta alla fine del documento",
|
|
675
|
+
"cmd.page_down": "Pagina giù",
|
|
676
|
+
"cmd.page_up": "Pagina su",
|
|
677
|
+
"cmd.half_page_down": "Mezza pagina giù",
|
|
678
|
+
"cmd.half_page_up": "Mezza pagina su",
|
|
679
|
+
"cmd.center_cursor": "Centra il cursore sullo schermo",
|
|
680
|
+
"cmd.search_forward": "Cerca in avanti",
|
|
681
|
+
"cmd.search_backward": "Cerca all'indietro",
|
|
682
|
+
"cmd.find_next": "Trova corrispondenza successiva",
|
|
683
|
+
"cmd.find_prev": "Trova corrispondenza precedente",
|
|
684
|
+
"cmd.find_char_f": "Trova carattere in avanti",
|
|
685
|
+
"cmd.find_char_t": "Trova fino al carattere in avanti",
|
|
686
|
+
"cmd.find_char_F": "Trova carattere all'indietro",
|
|
687
|
+
"cmd.find_char_T": "Trova fino al carattere all'indietro",
|
|
688
|
+
"cmd.find_char_repeat": "Ripeti ultima ricerca carattere",
|
|
689
|
+
"cmd.find_char_repeat_reverse": "Ripeti ultima ricerca carattere (inverso)",
|
|
690
|
+
|
|
691
|
+
"cmd.insert_before": "Inserisci prima del cursore",
|
|
692
|
+
"cmd.insert_after": "Inserisci dopo il cursore",
|
|
693
|
+
"cmd.insert_line_start": "Inserisci all'inizio della riga",
|
|
694
|
+
"cmd.insert_line_end": "Inserisci alla fine della riga",
|
|
695
|
+
"cmd.open_below": "Apri riga sotto",
|
|
696
|
+
"cmd.open_above": "Apri riga sopra",
|
|
697
|
+
"cmd.return_to_normal": "Torna alla modalità normale",
|
|
698
|
+
|
|
699
|
+
"cmd.delete_operator": "Operatore cancella",
|
|
700
|
+
"cmd.change_operator": "Operatore cambia",
|
|
701
|
+
"cmd.yank_operator": "Operatore copia (yank)",
|
|
702
|
+
"cmd.delete_line": "Cancella riga",
|
|
703
|
+
"cmd.change_line": "Cambia riga",
|
|
704
|
+
"cmd.yank_line": "Copia riga (yank)",
|
|
705
|
+
"cmd.delete_char": "Cancella carattere",
|
|
706
|
+
"cmd.delete_char_before": "Cancella carattere prima del cursore",
|
|
707
|
+
"cmd.substitute": "Sostituisci carattere",
|
|
708
|
+
"cmd.delete_to_end": "Cancella fino alla fine della riga",
|
|
709
|
+
"cmd.change_to_end": "Cambia fino alla fine della riga",
|
|
710
|
+
"cmd.paste_after": "Incolla dopo",
|
|
711
|
+
"cmd.paste_before": "Incolla prima",
|
|
712
|
+
"cmd.undo": "Annulla",
|
|
713
|
+
"cmd.redo": "Ripeti",
|
|
714
|
+
"cmd.join_lines": "Unisci righe"
|
|
715
|
+
},
|
|
597
716
|
"ja": {
|
|
598
717
|
"mode.normal": "NORMAL",
|
|
599
718
|
"mode.insert": "INSERT",
|
|
@@ -89,6 +89,24 @@
|
|
|
89
89
|
"text.greeting": "Bonjour depuis TypeScript! Le systeme de plugins fonctionne!",
|
|
90
90
|
"text.comment": "// Ce commentaire a ete insere par un plugin TypeScript!"
|
|
91
91
|
},
|
|
92
|
+
"it": {
|
|
93
|
+
"cmd.open_help": "Demo plugin: Apri aiuto",
|
|
94
|
+
"cmd.open_help_desc": "Apre la pagina di aiuto dell'editor (usa un'azione integrata)",
|
|
95
|
+
"cmd.save_file": "Demo plugin: Salva file",
|
|
96
|
+
"cmd.save_file_desc": "Salva il file corrente (usa un'azione integrata)",
|
|
97
|
+
"cmd.say_hello": "Demo plugin: Saluta",
|
|
98
|
+
"cmd.say_hello_desc": "Inserisce un saluto amichevole nel buffer",
|
|
99
|
+
"cmd.insert_time": "Demo plugin: Inserisci ora",
|
|
100
|
+
"cmd.insert_time_desc": "Inserisce l'ora corrente alla posizione del cursore",
|
|
101
|
+
"cmd.insert_comment": "Demo plugin: Inserisci commento",
|
|
102
|
+
"cmd.insert_comment_desc": "Inserisce un commento di esempio alla posizione del cursore",
|
|
103
|
+
"status.loaded": "I plugin funzionano! Plugin di benvenuto caricato con successo!",
|
|
104
|
+
"status.greeting_inserted": "Saluto inserito alla posizione del cursore",
|
|
105
|
+
"status.time_inserted": "Ora inserita alla posizione del cursore",
|
|
106
|
+
"status.comment_inserted": "Commento inserito dal plugin",
|
|
107
|
+
"text.greeting": "Ciao da TypeScript! Il sistema dei plugin funziona!",
|
|
108
|
+
"text.comment": "// Questo commento è stato inserito da un plugin TypeScript!"
|
|
109
|
+
},
|
|
92
110
|
"ja": {
|
|
93
111
|
"cmd.open_help": "プラグインデモ: ヘルプを開く",
|
|
94
112
|
"cmd.open_help_desc": "エディタのヘルプページを開く(組み込みアクションを使用)",
|
package/themes/dark.json
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dark",
|
|
3
|
+
"editor": {
|
|
4
|
+
"bg": [30, 30, 30],
|
|
5
|
+
"fg": [212, 212, 212],
|
|
6
|
+
"cursor": [255, 255, 255],
|
|
7
|
+
"inactive_cursor": [100, 100, 100],
|
|
8
|
+
"selection_bg": [38, 79, 120],
|
|
9
|
+
"current_line_bg": [40, 40, 40],
|
|
10
|
+
"line_number_fg": [100, 100, 100],
|
|
11
|
+
"line_number_bg": [30, 30, 30],
|
|
12
|
+
"diff_add_bg": [35, 60, 35],
|
|
13
|
+
"diff_remove_bg": [70, 35, 35],
|
|
14
|
+
"diff_modify_bg": [40, 38, 30]
|
|
15
|
+
},
|
|
16
|
+
"ui": {
|
|
17
|
+
"tab_active_fg": "Yellow",
|
|
18
|
+
"tab_active_bg": "Blue",
|
|
19
|
+
"tab_inactive_fg": "White",
|
|
20
|
+
"tab_inactive_bg": "DarkGray",
|
|
21
|
+
"tab_separator_bg": [45, 45, 48],
|
|
22
|
+
"tab_close_hover_fg": [255, 100, 100],
|
|
23
|
+
"tab_hover_bg": [70, 70, 75],
|
|
24
|
+
"menu_bg": [60, 60, 65],
|
|
25
|
+
"menu_fg": [220, 220, 220],
|
|
26
|
+
"menu_active_bg": [60, 60, 60],
|
|
27
|
+
"menu_active_fg": [255, 255, 255],
|
|
28
|
+
"menu_dropdown_bg": [50, 50, 50],
|
|
29
|
+
"menu_dropdown_fg": [220, 220, 220],
|
|
30
|
+
"menu_highlight_bg": [70, 130, 180],
|
|
31
|
+
"menu_highlight_fg": [255, 255, 255],
|
|
32
|
+
"menu_border_fg": [100, 100, 100],
|
|
33
|
+
"menu_separator_fg": [80, 80, 80],
|
|
34
|
+
"menu_hover_bg": [55, 55, 55],
|
|
35
|
+
"menu_hover_fg": [255, 255, 255],
|
|
36
|
+
"menu_disabled_fg": [100, 100, 100],
|
|
37
|
+
"menu_disabled_bg": [50, 50, 50],
|
|
38
|
+
"status_bar_fg": "White",
|
|
39
|
+
"status_bar_bg": [30, 30, 30],
|
|
40
|
+
"prompt_fg": "White",
|
|
41
|
+
"prompt_bg": [20, 20, 20],
|
|
42
|
+
"prompt_selection_fg": "White",
|
|
43
|
+
"prompt_selection_bg": [58, 79, 120],
|
|
44
|
+
"popup_border_fg": "Gray",
|
|
45
|
+
"popup_bg": [30, 30, 30],
|
|
46
|
+
"popup_selection_bg": [58, 79, 120],
|
|
47
|
+
"popup_text_fg": "White",
|
|
48
|
+
"suggestion_bg": [30, 30, 30],
|
|
49
|
+
"suggestion_selected_bg": [58, 79, 120],
|
|
50
|
+
"help_bg": "Black",
|
|
51
|
+
"help_fg": "White",
|
|
52
|
+
"help_key_fg": "Cyan",
|
|
53
|
+
"help_separator_fg": "DarkGray",
|
|
54
|
+
"help_indicator_fg": "Red",
|
|
55
|
+
"help_indicator_bg": "Black",
|
|
56
|
+
"inline_code_bg": [60, 60, 60],
|
|
57
|
+
"split_separator_fg": [100, 100, 100],
|
|
58
|
+
"split_separator_hover_fg": [100, 149, 237],
|
|
59
|
+
"scrollbar_track_fg": "DarkGray",
|
|
60
|
+
"scrollbar_thumb_fg": "Gray",
|
|
61
|
+
"scrollbar_track_hover_fg": "Gray",
|
|
62
|
+
"scrollbar_thumb_hover_fg": "White",
|
|
63
|
+
"compose_margin_bg": [18, 18, 18],
|
|
64
|
+
"semantic_highlight_bg": [60, 60, 80],
|
|
65
|
+
"terminal_bg": "Default",
|
|
66
|
+
"terminal_fg": "Default",
|
|
67
|
+
"status_warning_indicator_bg": [181, 137, 0],
|
|
68
|
+
"status_warning_indicator_fg": [0, 0, 0],
|
|
69
|
+
"status_error_indicator_bg": [220, 50, 47],
|
|
70
|
+
"status_error_indicator_fg": [255, 255, 255],
|
|
71
|
+
"status_warning_indicator_hover_bg": [211, 167, 30],
|
|
72
|
+
"status_warning_indicator_hover_fg": [0, 0, 0],
|
|
73
|
+
"status_error_indicator_hover_bg": [250, 80, 77],
|
|
74
|
+
"status_error_indicator_hover_fg": [255, 255, 255],
|
|
75
|
+
"tab_drop_zone_bg": [70, 130, 180],
|
|
76
|
+
"tab_drop_zone_border": [100, 149, 237]
|
|
77
|
+
},
|
|
78
|
+
"search": {
|
|
79
|
+
"match_bg": [100, 100, 20],
|
|
80
|
+
"match_fg": [255, 255, 255]
|
|
81
|
+
},
|
|
82
|
+
"diagnostic": {
|
|
83
|
+
"error_fg": "Red",
|
|
84
|
+
"error_bg": [60, 20, 20],
|
|
85
|
+
"warning_fg": "Yellow",
|
|
86
|
+
"warning_bg": [60, 50, 0],
|
|
87
|
+
"info_fg": "Blue",
|
|
88
|
+
"info_bg": [0, 30, 60],
|
|
89
|
+
"hint_fg": "Gray",
|
|
90
|
+
"hint_bg": [30, 30, 30]
|
|
91
|
+
},
|
|
92
|
+
"syntax": {
|
|
93
|
+
"keyword": [86, 156, 214],
|
|
94
|
+
"string": [206, 145, 120],
|
|
95
|
+
"comment": [106, 153, 85],
|
|
96
|
+
"function": [220, 220, 170],
|
|
97
|
+
"type": [78, 201, 176],
|
|
98
|
+
"variable": [156, 220, 254],
|
|
99
|
+
"constant": [79, 193, 255],
|
|
100
|
+
"operator": [212, 212, 212]
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "high-contrast",
|
|
3
|
+
"editor": {
|
|
4
|
+
"bg": "Black",
|
|
5
|
+
"fg": "White",
|
|
6
|
+
"cursor": "White",
|
|
7
|
+
"inactive_cursor": "DarkGray",
|
|
8
|
+
"selection_bg": [0, 100, 200],
|
|
9
|
+
"current_line_bg": [20, 20, 20],
|
|
10
|
+
"line_number_fg": [140, 140, 140],
|
|
11
|
+
"line_number_bg": "Black",
|
|
12
|
+
"diff_add_bg": [0, 80, 0],
|
|
13
|
+
"diff_remove_bg": [100, 0, 0],
|
|
14
|
+
"diff_modify_bg": [25, 22, 0]
|
|
15
|
+
},
|
|
16
|
+
"ui": {
|
|
17
|
+
"tab_active_fg": "Black",
|
|
18
|
+
"tab_active_bg": "Yellow",
|
|
19
|
+
"tab_inactive_fg": "White",
|
|
20
|
+
"tab_inactive_bg": "Black",
|
|
21
|
+
"tab_separator_bg": [30, 30, 35],
|
|
22
|
+
"tab_close_hover_fg": [249, 38, 114],
|
|
23
|
+
"tab_hover_bg": [50, 50, 55],
|
|
24
|
+
"menu_bg": [50, 50, 55],
|
|
25
|
+
"menu_fg": "White",
|
|
26
|
+
"menu_active_bg": "Yellow",
|
|
27
|
+
"menu_active_fg": "Black",
|
|
28
|
+
"menu_dropdown_bg": [20, 20, 20],
|
|
29
|
+
"menu_dropdown_fg": "White",
|
|
30
|
+
"menu_highlight_bg": [0, 100, 200],
|
|
31
|
+
"menu_highlight_fg": "White",
|
|
32
|
+
"menu_border_fg": "Yellow",
|
|
33
|
+
"menu_separator_fg": "White",
|
|
34
|
+
"menu_hover_bg": [50, 50, 50],
|
|
35
|
+
"menu_hover_fg": "Yellow",
|
|
36
|
+
"menu_disabled_fg": "DarkGray",
|
|
37
|
+
"menu_disabled_bg": [20, 20, 20],
|
|
38
|
+
"status_bar_fg": "White",
|
|
39
|
+
"status_bar_bg": [20, 20, 20],
|
|
40
|
+
"prompt_fg": "White",
|
|
41
|
+
"prompt_bg": [10, 10, 10],
|
|
42
|
+
"prompt_selection_fg": "White",
|
|
43
|
+
"prompt_selection_bg": [0, 100, 200],
|
|
44
|
+
"popup_border_fg": "LightCyan",
|
|
45
|
+
"popup_bg": "Black",
|
|
46
|
+
"popup_selection_bg": [0, 100, 200],
|
|
47
|
+
"popup_text_fg": "White",
|
|
48
|
+
"suggestion_bg": "Black",
|
|
49
|
+
"suggestion_selected_bg": [0, 100, 200],
|
|
50
|
+
"help_bg": "Black",
|
|
51
|
+
"help_fg": "White",
|
|
52
|
+
"help_key_fg": "LightCyan",
|
|
53
|
+
"help_separator_fg": "White",
|
|
54
|
+
"help_indicator_fg": "Red",
|
|
55
|
+
"help_indicator_bg": "Black",
|
|
56
|
+
"inline_code_bg": [40, 40, 40],
|
|
57
|
+
"split_separator_fg": [140, 140, 140],
|
|
58
|
+
"split_separator_hover_fg": "Yellow",
|
|
59
|
+
"scrollbar_track_fg": "White",
|
|
60
|
+
"scrollbar_thumb_fg": "Yellow",
|
|
61
|
+
"scrollbar_track_hover_fg": "Yellow",
|
|
62
|
+
"scrollbar_thumb_hover_fg": "Cyan",
|
|
63
|
+
"compose_margin_bg": [10, 10, 10],
|
|
64
|
+
"semantic_highlight_bg": [0, 60, 100],
|
|
65
|
+
"terminal_bg": "Default",
|
|
66
|
+
"terminal_fg": "Default",
|
|
67
|
+
"status_warning_indicator_bg": "Yellow",
|
|
68
|
+
"status_warning_indicator_fg": "Black",
|
|
69
|
+
"status_error_indicator_bg": "Red",
|
|
70
|
+
"status_error_indicator_fg": "White",
|
|
71
|
+
"status_warning_indicator_hover_bg": "LightYellow",
|
|
72
|
+
"status_warning_indicator_hover_fg": "Black",
|
|
73
|
+
"status_error_indicator_hover_bg": "LightRed",
|
|
74
|
+
"status_error_indicator_hover_fg": "White",
|
|
75
|
+
"tab_drop_zone_bg": [0, 100, 200],
|
|
76
|
+
"tab_drop_zone_border": "Yellow"
|
|
77
|
+
},
|
|
78
|
+
"search": {
|
|
79
|
+
"match_bg": "Yellow",
|
|
80
|
+
"match_fg": "Black"
|
|
81
|
+
},
|
|
82
|
+
"diagnostic": {
|
|
83
|
+
"error_fg": "Red",
|
|
84
|
+
"error_bg": [100, 0, 0],
|
|
85
|
+
"warning_fg": "Yellow",
|
|
86
|
+
"warning_bg": [100, 100, 0],
|
|
87
|
+
"info_fg": "Cyan",
|
|
88
|
+
"info_bg": [0, 50, 100],
|
|
89
|
+
"hint_fg": "White",
|
|
90
|
+
"hint_bg": [50, 50, 50]
|
|
91
|
+
},
|
|
92
|
+
"syntax": {
|
|
93
|
+
"keyword": "Cyan",
|
|
94
|
+
"string": "Green",
|
|
95
|
+
"comment": "Gray",
|
|
96
|
+
"function": "Yellow",
|
|
97
|
+
"type": "Magenta",
|
|
98
|
+
"variable": "White",
|
|
99
|
+
"constant": "LightBlue",
|
|
100
|
+
"operator": "White"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "light",
|
|
3
|
+
"editor": {
|
|
4
|
+
"bg": [255, 255, 255],
|
|
5
|
+
"fg": [0, 0, 0],
|
|
6
|
+
"cursor": [0, 0, 0],
|
|
7
|
+
"inactive_cursor": [180, 180, 180],
|
|
8
|
+
"selection_bg": [173, 214, 255],
|
|
9
|
+
"current_line_bg": [245, 245, 245],
|
|
10
|
+
"line_number_fg": [140, 140, 140],
|
|
11
|
+
"line_number_bg": [255, 255, 255],
|
|
12
|
+
"diff_add_bg": [200, 255, 200],
|
|
13
|
+
"diff_remove_bg": [255, 200, 200],
|
|
14
|
+
"diff_modify_bg": [255, 252, 240]
|
|
15
|
+
},
|
|
16
|
+
"ui": {
|
|
17
|
+
"tab_active_fg": [40, 40, 40],
|
|
18
|
+
"tab_active_bg": [255, 255, 255],
|
|
19
|
+
"tab_inactive_fg": [100, 100, 100],
|
|
20
|
+
"tab_inactive_bg": [230, 230, 230],
|
|
21
|
+
"tab_separator_bg": [200, 200, 200],
|
|
22
|
+
"tab_close_hover_fg": [220, 50, 50],
|
|
23
|
+
"tab_hover_bg": [210, 210, 210],
|
|
24
|
+
"menu_bg": [245, 245, 245],
|
|
25
|
+
"menu_fg": [30, 30, 30],
|
|
26
|
+
"menu_active_bg": [225, 225, 225],
|
|
27
|
+
"menu_active_fg": [0, 0, 0],
|
|
28
|
+
"menu_dropdown_bg": [248, 248, 248],
|
|
29
|
+
"menu_dropdown_fg": [30, 30, 30],
|
|
30
|
+
"menu_highlight_bg": [209, 226, 243],
|
|
31
|
+
"menu_highlight_fg": [0, 0, 0],
|
|
32
|
+
"menu_border_fg": [180, 180, 180],
|
|
33
|
+
"menu_separator_fg": [210, 210, 210],
|
|
34
|
+
"menu_hover_bg": [230, 235, 240],
|
|
35
|
+
"menu_hover_fg": [0, 0, 0],
|
|
36
|
+
"menu_disabled_fg": [160, 160, 160],
|
|
37
|
+
"menu_disabled_bg": [248, 248, 248],
|
|
38
|
+
"status_bar_fg": "Black",
|
|
39
|
+
"status_bar_bg": [220, 220, 220],
|
|
40
|
+
"prompt_fg": "Black",
|
|
41
|
+
"prompt_bg": [230, 240, 250],
|
|
42
|
+
"prompt_selection_fg": "Black",
|
|
43
|
+
"prompt_selection_bg": [173, 214, 255],
|
|
44
|
+
"popup_border_fg": [180, 180, 180],
|
|
45
|
+
"popup_bg": [232, 238, 245],
|
|
46
|
+
"popup_selection_bg": [209, 226, 243],
|
|
47
|
+
"popup_text_fg": [30, 30, 30],
|
|
48
|
+
"suggestion_bg": [232, 238, 245],
|
|
49
|
+
"suggestion_selected_bg": [209, 226, 243],
|
|
50
|
+
"help_bg": "White",
|
|
51
|
+
"help_fg": "Black",
|
|
52
|
+
"help_key_fg": "Blue",
|
|
53
|
+
"help_separator_fg": "Gray",
|
|
54
|
+
"help_indicator_fg": "Red",
|
|
55
|
+
"help_indicator_bg": "White",
|
|
56
|
+
"inline_code_bg": [230, 230, 235],
|
|
57
|
+
"split_separator_fg": [140, 140, 140],
|
|
58
|
+
"split_separator_hover_fg": [70, 130, 180],
|
|
59
|
+
"scrollbar_track_fg": [220, 220, 220],
|
|
60
|
+
"scrollbar_thumb_fg": [180, 180, 180],
|
|
61
|
+
"scrollbar_track_hover_fg": [200, 200, 200],
|
|
62
|
+
"scrollbar_thumb_hover_fg": [140, 140, 140],
|
|
63
|
+
"compose_margin_bg": [220, 220, 225],
|
|
64
|
+
"semantic_highlight_bg": [220, 230, 240],
|
|
65
|
+
"terminal_bg": "Default",
|
|
66
|
+
"terminal_fg": "Default",
|
|
67
|
+
"status_warning_indicator_bg": [202, 145, 0],
|
|
68
|
+
"status_warning_indicator_fg": [0, 0, 0],
|
|
69
|
+
"status_error_indicator_bg": [200, 40, 40],
|
|
70
|
+
"status_error_indicator_fg": [255, 255, 255],
|
|
71
|
+
"status_warning_indicator_hover_bg": [232, 175, 30],
|
|
72
|
+
"status_warning_indicator_hover_fg": [0, 0, 0],
|
|
73
|
+
"status_error_indicator_hover_bg": [230, 70, 70],
|
|
74
|
+
"status_error_indicator_hover_fg": [255, 255, 255],
|
|
75
|
+
"tab_drop_zone_bg": [173, 214, 255],
|
|
76
|
+
"tab_drop_zone_border": [70, 130, 180]
|
|
77
|
+
},
|
|
78
|
+
"search": {
|
|
79
|
+
"match_bg": [255, 255, 150],
|
|
80
|
+
"match_fg": [0, 0, 0]
|
|
81
|
+
},
|
|
82
|
+
"diagnostic": {
|
|
83
|
+
"error_fg": "Red",
|
|
84
|
+
"error_bg": [255, 220, 220],
|
|
85
|
+
"warning_fg": [128, 128, 0],
|
|
86
|
+
"warning_bg": [255, 255, 200],
|
|
87
|
+
"info_fg": "Blue",
|
|
88
|
+
"info_bg": [220, 240, 255],
|
|
89
|
+
"hint_fg": "DarkGray",
|
|
90
|
+
"hint_bg": [240, 240, 240]
|
|
91
|
+
},
|
|
92
|
+
"syntax": {
|
|
93
|
+
"keyword": [175, 0, 219],
|
|
94
|
+
"string": [163, 21, 21],
|
|
95
|
+
"comment": [0, 128, 0],
|
|
96
|
+
"function": [121, 94, 38],
|
|
97
|
+
"type": [0, 128, 128],
|
|
98
|
+
"variable": [0, 16, 128],
|
|
99
|
+
"constant": [0, 112, 193],
|
|
100
|
+
"operator": [0, 0, 0]
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nostalgia",
|
|
3
|
+
"editor": {
|
|
4
|
+
"bg": [0, 0, 170],
|
|
5
|
+
"fg": [255, 255, 85],
|
|
6
|
+
"cursor": [255, 255, 255],
|
|
7
|
+
"inactive_cursor": [170, 170, 170],
|
|
8
|
+
"selection_bg": [170, 170, 170],
|
|
9
|
+
"current_line_bg": [0, 0, 128],
|
|
10
|
+
"line_number_fg": [85, 255, 255],
|
|
11
|
+
"line_number_bg": [0, 0, 170],
|
|
12
|
+
"diff_add_bg": [0, 100, 0],
|
|
13
|
+
"diff_remove_bg": [170, 0, 0],
|
|
14
|
+
"diff_modify_bg": [20, 20, 140]
|
|
15
|
+
},
|
|
16
|
+
"ui": {
|
|
17
|
+
"tab_active_fg": [0, 0, 0],
|
|
18
|
+
"tab_active_bg": [170, 170, 170],
|
|
19
|
+
"tab_inactive_fg": [255, 255, 85],
|
|
20
|
+
"tab_inactive_bg": [0, 0, 128],
|
|
21
|
+
"tab_separator_bg": [0, 0, 170],
|
|
22
|
+
"tab_close_hover_fg": [255, 85, 85],
|
|
23
|
+
"tab_hover_bg": [0, 0, 200],
|
|
24
|
+
"menu_bg": [170, 170, 170],
|
|
25
|
+
"menu_fg": [0, 0, 0],
|
|
26
|
+
"menu_active_bg": [0, 170, 0],
|
|
27
|
+
"menu_active_fg": [255, 255, 255],
|
|
28
|
+
"menu_dropdown_bg": [170, 170, 170],
|
|
29
|
+
"menu_dropdown_fg": [0, 0, 0],
|
|
30
|
+
"menu_highlight_bg": [0, 170, 0],
|
|
31
|
+
"menu_highlight_fg": [255, 255, 255],
|
|
32
|
+
"menu_border_fg": [0, 0, 0],
|
|
33
|
+
"menu_separator_fg": [85, 85, 85],
|
|
34
|
+
"menu_hover_bg": [0, 170, 0],
|
|
35
|
+
"menu_hover_fg": [255, 255, 255],
|
|
36
|
+
"menu_disabled_fg": [85, 85, 85],
|
|
37
|
+
"menu_disabled_bg": [170, 170, 170],
|
|
38
|
+
"status_bar_fg": [0, 0, 0],
|
|
39
|
+
"status_bar_bg": [0, 170, 170],
|
|
40
|
+
"prompt_fg": [255, 255, 85],
|
|
41
|
+
"prompt_bg": [0, 0, 170],
|
|
42
|
+
"prompt_selection_fg": [0, 0, 0],
|
|
43
|
+
"prompt_selection_bg": [170, 170, 170],
|
|
44
|
+
"popup_border_fg": [255, 255, 255],
|
|
45
|
+
"popup_bg": [0, 0, 170],
|
|
46
|
+
"popup_selection_bg": [0, 170, 0],
|
|
47
|
+
"popup_text_fg": [255, 255, 85],
|
|
48
|
+
"suggestion_bg": [0, 0, 170],
|
|
49
|
+
"suggestion_selected_bg": [0, 170, 0],
|
|
50
|
+
"help_bg": [0, 0, 170],
|
|
51
|
+
"help_fg": [255, 255, 85],
|
|
52
|
+
"help_key_fg": [85, 255, 255],
|
|
53
|
+
"help_separator_fg": [170, 170, 170],
|
|
54
|
+
"help_indicator_fg": [255, 85, 85],
|
|
55
|
+
"help_indicator_bg": [0, 0, 170],
|
|
56
|
+
"inline_code_bg": [0, 0, 85],
|
|
57
|
+
"split_separator_fg": [85, 255, 255],
|
|
58
|
+
"split_separator_hover_fg": [255, 255, 255],
|
|
59
|
+
"scrollbar_track_fg": [0, 0, 128],
|
|
60
|
+
"scrollbar_thumb_fg": [170, 170, 170],
|
|
61
|
+
"scrollbar_track_hover_fg": [0, 0, 128],
|
|
62
|
+
"scrollbar_thumb_hover_fg": [255, 255, 255],
|
|
63
|
+
"compose_margin_bg": [0, 0, 128],
|
|
64
|
+
"semantic_highlight_bg": [0, 85, 170],
|
|
65
|
+
"terminal_bg": [0, 0, 170],
|
|
66
|
+
"terminal_fg": [255, 255, 85],
|
|
67
|
+
"status_warning_indicator_bg": [170, 85, 0],
|
|
68
|
+
"status_warning_indicator_fg": [255, 255, 255],
|
|
69
|
+
"status_error_indicator_bg": [170, 0, 0],
|
|
70
|
+
"status_error_indicator_fg": [255, 255, 255],
|
|
71
|
+
"status_warning_indicator_hover_bg": [200, 115, 30],
|
|
72
|
+
"status_warning_indicator_hover_fg": [255, 255, 255],
|
|
73
|
+
"status_error_indicator_hover_bg": [200, 30, 30],
|
|
74
|
+
"status_error_indicator_hover_fg": [255, 255, 255],
|
|
75
|
+
"tab_drop_zone_bg": [0, 170, 170],
|
|
76
|
+
"tab_drop_zone_border": [255, 255, 255]
|
|
77
|
+
},
|
|
78
|
+
"search": {
|
|
79
|
+
"match_bg": [170, 85, 0],
|
|
80
|
+
"match_fg": [255, 255, 255]
|
|
81
|
+
},
|
|
82
|
+
"diagnostic": {
|
|
83
|
+
"error_fg": [255, 85, 85],
|
|
84
|
+
"error_bg": [128, 0, 0],
|
|
85
|
+
"warning_fg": [255, 255, 85],
|
|
86
|
+
"warning_bg": [128, 128, 0],
|
|
87
|
+
"info_fg": [85, 255, 255],
|
|
88
|
+
"info_bg": [0, 85, 128],
|
|
89
|
+
"hint_fg": [170, 170, 170],
|
|
90
|
+
"hint_bg": [0, 0, 128]
|
|
91
|
+
},
|
|
92
|
+
"syntax": {
|
|
93
|
+
"keyword": [255, 255, 255],
|
|
94
|
+
"string": [0, 255, 255],
|
|
95
|
+
"comment": [128, 128, 128],
|
|
96
|
+
"function": [255, 255, 0],
|
|
97
|
+
"type": [0, 255, 0],
|
|
98
|
+
"variable": [255, 255, 85],
|
|
99
|
+
"constant": [255, 0, 255],
|
|
100
|
+
"operator": [170, 170, 170]
|
|
101
|
+
}
|
|
102
|
+
}
|