Make attr colorscheme group key required
This commit is contained in:
parent
d72e4f5081
commit
7f94583324
|
@ -269,7 +269,7 @@ override those from each previous file. It is required that either
|
|||
name of the highlighting group (usually the function name for function
|
||||
segments), and the value is either
|
||||
|
||||
#) a dict that defines the foreground color, background color and optional
|
||||
#) a dict that defines the foreground color, background color and
|
||||
attributes:
|
||||
|
||||
``fg``
|
||||
|
@ -283,7 +283,8 @@ override those from each previous file. It is required that either
|
|||
``attr``
|
||||
List of attributes. Valid values are one or more of ``bold``,
|
||||
``italic`` and ``underline``. Note that some attributes may be
|
||||
unavailable in some applications or terminal emulators.
|
||||
unavailable in some applications or terminal emulators. If you do not
|
||||
need any attributes leave this empty.
|
||||
|
||||
#) a string (an alias): a name of existing group. This group’s definition
|
||||
will be used when this color is requested.
|
||||
|
|
|
@ -1,42 +1,42 @@
|
|||
{
|
||||
"name": "Default",
|
||||
"groups": {
|
||||
"background:divider": { "fg": "gray5", "bg": "gray0" },
|
||||
"background:divider": { "fg": "gray5", "bg": "gray0", "attr": [] },
|
||||
"session": { "fg": "black", "bg": "gray10", "attr": ["bold"] },
|
||||
"date": { "fg": "gray8", "bg": "gray2" },
|
||||
"date": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"time": { "fg": "gray10", "bg": "gray2", "attr": ["bold"] },
|
||||
"time:divider": { "fg": "gray5", "bg": "gray2" },
|
||||
"time:divider": { "fg": "gray5", "bg": "gray2", "attr": [] },
|
||||
"email_alert": { "fg": "white", "bg": "brightred", "attr": ["bold"] },
|
||||
"email_alert_gradient": { "fg": "white", "bg": "yellow_orange_red", "attr": ["bold"] },
|
||||
"hostname": { "fg": "black", "bg": "gray10", "attr": ["bold"] },
|
||||
"weather": { "fg": "gray8", "bg": "gray0" },
|
||||
"weather_temp_gradient": { "fg": "blue_red", "bg": "gray0" },
|
||||
"weather_condition_hot": { "fg": "khaki1", "bg": "gray0" },
|
||||
"weather_condition_snowy": { "fg": "skyblue1", "bg": "gray0" },
|
||||
"weather_condition_rainy": { "fg": "skyblue1", "bg": "gray0" },
|
||||
"uptime": { "fg": "gray8", "bg": "gray0" },
|
||||
"external_ip": { "fg": "gray8", "bg": "gray0" },
|
||||
"network_load": { "fg": "gray8", "bg": "gray0" },
|
||||
"network_load_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0" },
|
||||
"system_load": { "fg": "gray8", "bg": "gray0" },
|
||||
"system_load_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0" },
|
||||
"environment": { "fg": "gray8", "bg": "gray0" },
|
||||
"cpu_load_percent": { "fg": "gray8", "bg": "gray0" },
|
||||
"cpu_load_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0" },
|
||||
"battery": { "fg": "gray8", "bg": "gray0" },
|
||||
"battery_gradient": { "fg": "white_red", "bg": "gray0" },
|
||||
"battery_full": { "fg": "red", "bg": "gray0" },
|
||||
"battery_empty": { "fg": "white", "bg": "gray0" },
|
||||
"now_playing": { "fg": "gray10", "bg": "black" },
|
||||
"weather": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"weather_temp_gradient": { "fg": "blue_red", "bg": "gray0", "attr": [] },
|
||||
"weather_condition_hot": { "fg": "khaki1", "bg": "gray0", "attr": [] },
|
||||
"weather_condition_snowy": { "fg": "skyblue1", "bg": "gray0", "attr": [] },
|
||||
"weather_condition_rainy": { "fg": "skyblue1", "bg": "gray0", "attr": [] },
|
||||
"uptime": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"external_ip": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"network_load": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"network_load_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0", "attr": [] },
|
||||
"system_load": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"system_load_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0", "attr": [] },
|
||||
"environment": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"cpu_load_percent": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"cpu_load_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "gray0", "attr": [] },
|
||||
"battery": { "fg": "gray8", "bg": "gray0", "attr": [] },
|
||||
"battery_gradient": { "fg": "white_red", "bg": "gray0", "attr": [] },
|
||||
"battery_full": { "fg": "red", "bg": "gray0", "attr": [] },
|
||||
"battery_empty": { "fg": "white", "bg": "gray0", "attr": [] },
|
||||
"now_playing": { "fg": "gray10", "bg": "black", "attr": [] },
|
||||
"user": { "fg": "white", "bg": "darkblue", "attr": ["bold"] },
|
||||
"superuser": { "fg": "white", "bg": "brightred", "attr": ["bold"] },
|
||||
"branch": { "fg": "gray9", "bg": "gray2" },
|
||||
"branch_dirty": { "fg": "brightyellow", "bg": "gray2" },
|
||||
"branch_clean": { "fg": "gray9", "bg": "gray2" },
|
||||
"branch:divider": { "fg": "gray7", "bg": "gray2" },
|
||||
"cwd": { "fg": "gray9", "bg": "gray4" },
|
||||
"branch": { "fg": "gray9", "bg": "gray2", "attr": [] },
|
||||
"branch_dirty": { "fg": "brightyellow", "bg": "gray2", "attr": [] },
|
||||
"branch_clean": { "fg": "gray9", "bg": "gray2", "attr": [] },
|
||||
"branch:divider": { "fg": "gray7", "bg": "gray2", "attr": [] },
|
||||
"cwd": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"cwd:current_folder": { "fg": "gray10", "bg": "gray4", "attr": ["bold"] },
|
||||
"cwd:divider": { "fg": "gray7", "bg": "gray4" },
|
||||
"virtualenv": { "fg": "white", "bg": "darkcyan" }
|
||||
"cwd:divider": { "fg": "gray7", "bg": "gray4", "attr": [] },
|
||||
"virtualenv": { "fg": "white", "bg": "darkcyan", "attr": [] }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Default color scheme for IPython prompt",
|
||||
"groups": {
|
||||
"prompt": { "fg": "gray9", "bg": "gray4" },
|
||||
"prompt_count": { "fg": "white", "bg": "gray4" }
|
||||
"prompt": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"prompt_count": { "fg": "white", "bg": "gray4", "attr": [] }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "Default color scheme for shell prompts",
|
||||
"groups": {
|
||||
"hostname": { "fg": "brightyellow", "bg": "mediumorange" },
|
||||
"jobnum": { "fg": "brightyellow", "bg": "mediumorange" },
|
||||
"exit_fail": { "fg": "white", "bg": "darkestred" },
|
||||
"exit_success": { "fg": "white", "bg": "darkestgreen" },
|
||||
"environment": { "fg": "white", "bg": "darkestgreen" },
|
||||
"hostname": { "fg": "brightyellow", "bg": "mediumorange", "attr": [] },
|
||||
"jobnum": { "fg": "brightyellow", "bg": "mediumorange", "attr": [] },
|
||||
"exit_fail": { "fg": "white", "bg": "darkestred", "attr": [] },
|
||||
"exit_success": { "fg": "white", "bg": "darkestgreen", "attr": [] },
|
||||
"environment": { "fg": "white", "bg": "darkestgreen", "attr": [] },
|
||||
"mode": { "fg": "darkestgreen", "bg": "brightgreen", "attr": ["bold"] }
|
||||
},
|
||||
"mode_translations": {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"name": "Solarized dark for shell",
|
||||
"groups": {
|
||||
"jobnum": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"exit_fail": { "fg": "oldlace", "bg": "red" },
|
||||
"exit_success": { "fg": "oldlace", "bg": "green" },
|
||||
"jobnum": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"exit_fail": { "fg": "oldlace", "bg": "red", "attr": [] },
|
||||
"exit_success": { "fg": "oldlace", "bg": "green", "attr": [] },
|
||||
"mode": { "fg": "oldlace", "bg": "green", "attr": ["bold"] }
|
||||
},
|
||||
"mode_translations": {
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"name": "Solarized dark",
|
||||
"groups": {
|
||||
"background": { "fg": "oldlace", "bg": "royalblue5" },
|
||||
"background": { "fg": "oldlace", "bg": "royalblue5", "attr": [] },
|
||||
"user": { "fg": "oldlace", "bg": "blue", "attr": ["bold"] },
|
||||
"superuser": { "fg": "oldlace", "bg": "red", "attr": ["bold"] },
|
||||
"virtualenv": { "fg": "oldlace", "bg": "green" },
|
||||
"branch": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "royalblue5" },
|
||||
"branch_clean": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"cwd": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"virtualenv": { "fg": "oldlace", "bg": "green", "attr": [] },
|
||||
"branch": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "royalblue5", "attr": [] },
|
||||
"branch_clean": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"cwd": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"cwd:current_folder": { "fg": "oldlace", "bg": "darkgreencopper", "attr": ["bold"] },
|
||||
"cwd:divider": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"hostname": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"environment": { "fg": "oldlace", "bg": "green" }
|
||||
"cwd:divider": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"hostname": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"environment": { "fg": "oldlace", "bg": "green", "attr": [] }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,42 +1,42 @@
|
|||
{
|
||||
"name": "Default color scheme",
|
||||
"groups": {
|
||||
"background": { "fg": "white", "bg": "gray2" },
|
||||
"background:divider": { "fg": "gray6", "bg": "gray2" },
|
||||
"background": { "fg": "white", "bg": "gray2", "attr": [] },
|
||||
"background:divider": { "fg": "gray6", "bg": "gray2", "attr": [] },
|
||||
"mode": { "fg": "darkestgreen", "bg": "brightgreen", "attr": ["bold"] },
|
||||
"visual_range": { "fg": "brightestorange", "bg": "darkorange", "attr": ["bold"] },
|
||||
"modified_indicator": { "fg": "brightyellow", "bg": "gray4", "attr": ["bold"] },
|
||||
"paste_indicator": { "fg": "white", "bg": "mediumorange", "attr": ["bold"] },
|
||||
"readonly_indicator": { "fg": "brightestred", "bg": "gray4" },
|
||||
"branch": { "fg": "gray9", "bg": "gray4" },
|
||||
"branch_dirty": { "fg": "brightyellow", "bg": "gray4" },
|
||||
"branch_clean": { "fg": "gray9", "bg": "gray4" },
|
||||
"branch:divider": { "fg": "gray7", "bg": "gray4" },
|
||||
"file_directory": { "fg": "gray9", "bg": "gray4" },
|
||||
"readonly_indicator": { "fg": "brightestred", "bg": "gray4", "attr": [] },
|
||||
"branch": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"branch_dirty": { "fg": "brightyellow", "bg": "gray4", "attr": [] },
|
||||
"branch_clean": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"branch:divider": { "fg": "gray7", "bg": "gray4", "attr": [] },
|
||||
"file_directory": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"file_name": { "fg": "white", "bg": "gray4", "attr": ["bold"] },
|
||||
"window_title": { "fg": "white", "bg": "gray4" },
|
||||
"file_size": { "fg": "gray8", "bg": "gray2" },
|
||||
"window_title": { "fg": "white", "bg": "gray4", "attr": [] },
|
||||
"file_size": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"file_name_no_file": { "fg": "gray9", "bg": "gray4", "attr": ["bold"] },
|
||||
"file_name_empty": { "fg": "gray9", "bg": "gray4" },
|
||||
"file_format": { "fg": "gray8", "bg": "gray2" },
|
||||
"file_encoding": { "fg": "gray8", "bg": "gray2" },
|
||||
"file_type": { "fg": "gray8", "bg": "gray2" },
|
||||
"file_vcs_status": { "fg": "brightestred", "bg": "gray4" },
|
||||
"file_vcs_status_M": { "fg": "brightyellow", "bg": "gray4" },
|
||||
"file_vcs_status_A": { "fg": "brightgreen", "bg": "gray4" },
|
||||
"line_percent": { "fg": "gray9", "bg": "gray4" },
|
||||
"line_percent_gradient": { "fg": "dark_green_gray", "bg": "gray4" },
|
||||
"position": { "fg": "gray9", "bg": "gray4" },
|
||||
"position_gradient": { "fg": "green_yellow_red", "bg": "gray4" },
|
||||
"file_name_empty": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"file_format": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"file_encoding": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"file_type": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"file_vcs_status": { "fg": "brightestred", "bg": "gray4", "attr": [] },
|
||||
"file_vcs_status_M": { "fg": "brightyellow", "bg": "gray4", "attr": [] },
|
||||
"file_vcs_status_A": { "fg": "brightgreen", "bg": "gray4", "attr": [] },
|
||||
"line_percent": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"line_percent_gradient": { "fg": "dark_green_gray", "bg": "gray4", "attr": [] },
|
||||
"position": { "fg": "gray9", "bg": "gray4", "attr": [] },
|
||||
"position_gradient": { "fg": "green_yellow_red", "bg": "gray4", "attr": [] },
|
||||
"line_current": { "fg": "gray1", "bg": "gray10", "attr": ["bold"] },
|
||||
"line_current_symbol": { "fg": "gray1", "bg": "gray10" },
|
||||
"virtcol_current_gradient": { "fg": "dark_GREEN_Orange_red", "bg": "gray10" },
|
||||
"col_current": { "fg": "gray6", "bg": "gray10" },
|
||||
"modified_buffers": { "fg": "brightyellow", "bg": "gray2" },
|
||||
"environment": { "fg": "gray8", "bg": "gray2" },
|
||||
"line_current_symbol": { "fg": "gray1", "bg": "gray10", "attr": [] },
|
||||
"virtcol_current_gradient": { "fg": "dark_GREEN_Orange_red", "bg": "gray10", "attr": [] },
|
||||
"col_current": { "fg": "gray6", "bg": "gray10", "attr": [] },
|
||||
"modified_buffers": { "fg": "brightyellow", "bg": "gray2", "attr": [] },
|
||||
"environment": { "fg": "gray8", "bg": "gray2", "attr": [] },
|
||||
"error": { "fg": "brightestred", "bg": "darkred", "attr": ["bold"] },
|
||||
"warning": { "fg": "brightyellow", "bg": "darkorange", "attr": ["bold"] },
|
||||
"current_tag": { "fg": "gray9", "bg": "gray2" }
|
||||
"current_tag": { "fg": "gray9", "bg": "gray2", "attr": [] }
|
||||
},
|
||||
"mode_translations": {
|
||||
"nc": {
|
||||
|
@ -76,8 +76,8 @@
|
|||
},
|
||||
"groups": {
|
||||
"mode": { "fg": "darkestcyan", "bg": "white", "attr": ["bold"] },
|
||||
"background:divider": { "fg": "darkcyan", "bg": "darkestblue" },
|
||||
"branch:divider": { "fg": "darkcyan", "bg": "darkblue" }
|
||||
"background:divider": { "fg": "darkcyan", "bg": "darkestblue", "attr": [] },
|
||||
"branch:divider": { "fg": "darkcyan", "bg": "darkblue", "attr": [] }
|
||||
}
|
||||
},
|
||||
"v": {
|
||||
|
|
|
@ -1,38 +1,38 @@
|
|||
{
|
||||
"name": "Solarized dark for vim",
|
||||
"groups": {
|
||||
"background": { "fg": "oldlace", "bg": "royalblue5" },
|
||||
"background:divider": { "fg": "lightskyblue4", "bg": "royalblue5" },
|
||||
"background": { "fg": "oldlace", "bg": "royalblue5", "attr": [] },
|
||||
"background:divider": { "fg": "lightskyblue4", "bg": "royalblue5", "attr": [] },
|
||||
"mode": { "fg": "oldlace", "bg": "green", "attr": ["bold"] },
|
||||
"visual_range": { "fg": "green", "bg": "oldlace", "attr": ["bold"] },
|
||||
"modified_indicator": { "fg": "yellow", "bg": "darkgreencopper", "attr": ["bold"] },
|
||||
"paste_indicator": { "fg": "oldlace", "bg": "orange", "attr": ["bold"] },
|
||||
"readonly_indicator": { "fg": "red", "bg": "darkgreencopper" },
|
||||
"branch": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "darkgreencopper" },
|
||||
"branch_clean": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"branch:divider": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"file_directory": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"readonly_indicator": { "fg": "red", "bg": "darkgreencopper", "attr": [] },
|
||||
"branch": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"branch_clean": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"branch:divider": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_directory": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_name": { "fg": "oldlace", "bg": "darkgreencopper", "attr": ["bold"] },
|
||||
"window_title": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"file_size": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"window_title": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_size": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_name_no_file": { "fg": "oldlace", "bg": "darkgreencopper", "attr": ["bold"] },
|
||||
"file_name_empty": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"file_format": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"file_encoding": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"file_type": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"file_vcs_status": { "fg": "red", "bg": "darkgreencopper" },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "darkgreencopper" },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "darkgreencopper" },
|
||||
"line_percent": { "fg": "oldlace", "bg": "lightskyblue4" },
|
||||
"line_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "lightskyblue4" },
|
||||
"position": { "fg": "oldlace", "bg": "lightskyblue4" },
|
||||
"position_gradient": { "fg": "green_yellow_orange_red", "bg": "lightskyblue4" },
|
||||
"file_name_empty": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_format": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"file_encoding": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"file_type": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"file_vcs_status": { "fg": "red", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "darkgreencopper", "attr": [] },
|
||||
"line_percent": { "fg": "oldlace", "bg": "lightskyblue4", "attr": [] },
|
||||
"line_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "lightskyblue4", "attr": [] },
|
||||
"position": { "fg": "oldlace", "bg": "lightskyblue4", "attr": [] },
|
||||
"position_gradient": { "fg": "green_yellow_orange_red", "bg": "lightskyblue4", "attr": [] },
|
||||
"line_current": { "fg": "gray13", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"line_current_symbol": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"virtcol_current_gradient": { "fg": "GREEN_Orange_red", "bg": "lightyellow" },
|
||||
"col_current": { "fg": "azure4", "bg": "lightyellow" },
|
||||
"environment": { "fg": "gray61", "bg": "royalblue5" },
|
||||
"line_current_symbol": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"virtcol_current_gradient": { "fg": "GREEN_Orange_red", "bg": "lightyellow", "attr": [] },
|
||||
"col_current": { "fg": "azure4", "bg": "lightyellow", "attr": [] },
|
||||
"environment": { "fg": "gray61", "bg": "royalblue5", "attr": [] },
|
||||
"error": { "fg": "oldlace", "bg": "red", "attr": ["bold"] },
|
||||
"warning": { "fg": "oldlace", "bg": "orange", "attr": ["bold"] },
|
||||
"current_tag": { "fg": "oldlace", "bg": "royalblue5", "attr": ["bold"] }
|
||||
|
@ -50,32 +50,32 @@
|
|||
},
|
||||
"i": {
|
||||
"groups": {
|
||||
"background": { "fg": "oldlace", "bg": "darkgreencopper" },
|
||||
"background:divider": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"background": { "fg": "oldlace", "bg": "darkgreencopper", "attr": [] },
|
||||
"background:divider": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"mode": { "fg": "oldlace", "bg": "blue", "attr": ["bold"] },
|
||||
"modified_indicator": { "fg": "yellow", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"paste_indicator": { "fg": "oldlace", "bg": "orange", "attr": ["bold"] },
|
||||
"readonly_indicator": { "fg": "red", "bg": "lightyellow" },
|
||||
"branch": { "fg": "darkgreencopper", "bg": "lightyellow" },
|
||||
"branch:divider": { "fg": "lightskyblue4", "bg": "lightyellow" },
|
||||
"file_directory": { "fg": "darkgreencopper", "bg": "lightyellow" },
|
||||
"readonly_indicator": { "fg": "red", "bg": "lightyellow", "attr": [] },
|
||||
"branch": { "fg": "darkgreencopper", "bg": "lightyellow", "attr": [] },
|
||||
"branch:divider": { "fg": "lightskyblue4", "bg": "lightyellow", "attr": [] },
|
||||
"file_directory": { "fg": "darkgreencopper", "bg": "lightyellow", "attr": [] },
|
||||
"file_name": { "fg": "royalblue5", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"file_size": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"file_size": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_name_no_file": { "fg": "royalblue5", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"file_name_empty": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"file_format": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"file_encoding": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"file_type": { "fg": "lightyellow", "bg": "darkgreencopper" },
|
||||
"file_vcs_status": { "fg": "red", "bg": "lightyellow" },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "lightyellow" },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "lightyellow" },
|
||||
"line_percent": { "fg": "oldlace", "bg": "gray61" },
|
||||
"line_percent_gradient": { "fg": "oldlace", "bg": "gray61" },
|
||||
"position": { "fg": "oldlace", "bg": "gray61" },
|
||||
"position_gradient": { "fg": "oldlace", "bg": "gray61" },
|
||||
"file_name_empty": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_format": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_encoding": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_type": { "fg": "lightyellow", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_vcs_status": { "fg": "red", "bg": "lightyellow", "attr": [] },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "lightyellow", "attr": [] },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "lightyellow", "attr": [] },
|
||||
"line_percent": { "fg": "oldlace", "bg": "gray61", "attr": [] },
|
||||
"line_percent_gradient": { "fg": "oldlace", "bg": "gray61", "attr": [] },
|
||||
"position": { "fg": "oldlace", "bg": "gray61", "attr": [] },
|
||||
"position_gradient": { "fg": "oldlace", "bg": "gray61", "attr": [] },
|
||||
"line_current": { "fg": "gray13", "bg": "oldlace", "attr": ["bold"] },
|
||||
"line_current_symbol": { "fg": "gray13", "bg": "oldlace" },
|
||||
"col_current": { "fg": "azure4", "bg": "oldlace" }
|
||||
"line_current_symbol": { "fg": "gray13", "bg": "oldlace", "attr": [] },
|
||||
"col_current": { "fg": "azure4", "bg": "oldlace", "attr": [] }
|
||||
}
|
||||
},
|
||||
"v": {
|
||||
|
|
|
@ -1,38 +1,38 @@
|
|||
{
|
||||
"name": "Solarized light for vim",
|
||||
"groups": {
|
||||
"background": { "fg": "gray13", "bg": "darkgreencopper" },
|
||||
"background:divider": { "fg": "azure4", "bg": "darkgreencopper" },
|
||||
"background": { "fg": "gray13", "bg": "darkgreencopper", "attr": [] },
|
||||
"background:divider": { "fg": "azure4", "bg": "darkgreencopper", "attr": [] },
|
||||
"mode": { "fg": "oldlace", "bg": "green", "attr": ["bold"] },
|
||||
"visual_range": { "fg": "green", "bg": "oldlace", "attr": ["bold"] },
|
||||
"modified_indicator": { "fg": "yellow", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"paste_indicator": { "fg": "red", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"readonly_indicator": { "fg": "red", "bg": "lightyellow" },
|
||||
"branch": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "lightyellow" },
|
||||
"branch_clean": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"branch:divider": { "fg": "gray61", "bg": "lightyellow" },
|
||||
"file_directory": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"readonly_indicator": { "fg": "red", "bg": "lightyellow", "attr": [] },
|
||||
"branch": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"branch_dirty": { "fg": "yellow", "bg": "lightyellow", "attr": [] },
|
||||
"branch_clean": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"branch:divider": { "fg": "gray61", "bg": "lightyellow", "attr": [] },
|
||||
"file_directory": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_name": { "fg": "gray13", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"window_title": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"file_size": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"window_title": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"file_size": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"file_name_no_file": { "fg": "gray13", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"file_name_empty": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"file_format": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"file_encoding": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"file_type": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"file_vcs_status": { "fg": "red", "bg": "lightyellow" },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "lightyellow" },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "lightyellow" },
|
||||
"line_percent": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"line_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "lightyellow" },
|
||||
"position": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"position_gradient": { "fg": "green_yellow_orange_red", "bg": "lightyellow" },
|
||||
"file_name_empty": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"file_format": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_encoding": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_type": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"file_vcs_status": { "fg": "red", "bg": "lightyellow", "attr": [] },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "lightyellow", "attr": [] },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "lightyellow", "attr": [] },
|
||||
"line_percent": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"line_percent_gradient": { "fg": "green_yellow_orange_red", "bg": "lightyellow", "attr": [] },
|
||||
"position": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"position_gradient": { "fg": "green_yellow_orange_red", "bg": "lightyellow", "attr": [] },
|
||||
"line_current": { "fg": "oldlace", "bg": "royalblue5", "attr": ["bold"] },
|
||||
"line_current_symbol": { "fg": "oldlace", "bg": "royalblue5" },
|
||||
"virtcol_current_gradient": { "fg": "yellow_orange_red", "bg": "royalblue5" },
|
||||
"col_current": { "fg": "lightskyblue4", "bg": "royalblue5" },
|
||||
"environment": { "fg": "gray61", "bg": "darkgreencopper" },
|
||||
"line_current_symbol": { "fg": "oldlace", "bg": "royalblue5", "attr": [] },
|
||||
"virtcol_current_gradient": { "fg": "yellow_orange_red", "bg": "royalblue5", "attr": [] },
|
||||
"col_current": { "fg": "lightskyblue4", "bg": "royalblue5", "attr": [] },
|
||||
"environment": { "fg": "gray61", "bg": "darkgreencopper", "attr": [] },
|
||||
"error": { "fg": "gray13", "bg": "red", "attr": ["bold"] },
|
||||
"warning": { "fg": "gray13", "bg": "lightyellow", "attr": ["bold"] },
|
||||
"current_tag": { "fg": "gray13", "bg": "darkgreencopper", "attr": ["bold"] }
|
||||
|
@ -50,33 +50,33 @@
|
|||
},
|
||||
"i": {
|
||||
"groups": {
|
||||
"background": { "fg": "gray13", "bg": "lightyellow" },
|
||||
"background:divider": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"background": { "fg": "gray13", "bg": "lightyellow", "attr": [] },
|
||||
"background:divider": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"mode": { "fg": "oldlace", "bg": "blue", "attr": ["bold"] },
|
||||
"modified_indicator": { "fg": "yellow", "bg": "royalblue5", "attr": ["bold"] },
|
||||
"paste_indicator": { "fg": "oldlace", "bg": "orange", "attr": ["bold"] },
|
||||
"readonly_indicator": { "fg": "red", "bg": "royalblue5" },
|
||||
"branch": { "fg": "lightyellow", "bg": "royalblue5" },
|
||||
"branch:divider": { "fg": "azure4", "bg": "royalblue5" },
|
||||
"file_directory": { "fg": "lightyellow", "bg": "royalblue5" },
|
||||
"readonly_indicator": { "fg": "red", "bg": "royalblue5", "attr": [] },
|
||||
"branch": { "fg": "lightyellow", "bg": "royalblue5", "attr": [] },
|
||||
"branch:divider": { "fg": "azure4", "bg": "royalblue5", "attr": [] },
|
||||
"file_directory": { "fg": "lightyellow", "bg": "royalblue5", "attr": [] },
|
||||
"file_name": { "fg": "darkgreencopper", "bg": "royalblue5", "attr": ["bold"] },
|
||||
"file_size": { "fg": "darkgreencopper", "bg": "royalblue5" },
|
||||
"file_size": { "fg": "darkgreencopper", "bg": "royalblue5", "attr": [] },
|
||||
"file_name_no_file": { "fg": "darkgreencopper", "bg": "royalblue5", "attr": ["bold"] },
|
||||
"file_name_empty": { "fg": "darkgreencopper", "bg": "royalblue5" },
|
||||
"file_format": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"file_encoding": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"file_type": { "fg": "royalblue5", "bg": "lightyellow" },
|
||||
"file_vcs_status": { "fg": "red", "bg": "royalblue5" },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "royalblue5" },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "royalblue5" },
|
||||
"line_percent": { "fg": "gray13", "bg": "gray61" },
|
||||
"line_percent_gradient": { "fg": "gray13", "bg": "gray61" },
|
||||
"position": { "fg": "gray13", "bg": "gray61" },
|
||||
"position_gradient": { "fg": "gray13", "bg": "gray61" },
|
||||
"file_name_empty": { "fg": "darkgreencopper", "bg": "royalblue5", "attr": [] },
|
||||
"file_format": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_encoding": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_type": { "fg": "royalblue5", "bg": "lightyellow", "attr": [] },
|
||||
"file_vcs_status": { "fg": "red", "bg": "royalblue5", "attr": [] },
|
||||
"file_vcs_status_M": { "fg": "yellow", "bg": "royalblue5", "attr": [] },
|
||||
"file_vcs_status_A": { "fg": "green", "bg": "royalblue5", "attr": [] },
|
||||
"line_percent": { "fg": "gray13", "bg": "gray61", "attr": [] },
|
||||
"line_percent_gradient": { "fg": "gray13", "bg": "gray61", "attr": [] },
|
||||
"position": { "fg": "gray13", "bg": "gray61", "attr": [] },
|
||||
"position_gradient": { "fg": "gray13", "bg": "gray61", "attr": [] },
|
||||
"line_current": { "fg": "oldlace", "bg": "gray13", "attr": ["bold"] },
|
||||
"line_current_symbol": { "fg": "oldlace", "bg": "gray13" },
|
||||
"virtcol_current_gradient": { "fg": "yellow_orange_red", "bg": "gray13" },
|
||||
"col_current": { "fg": "lightskyblue4", "bg": "gray13" }
|
||||
"line_current_symbol": { "fg": "oldlace", "bg": "gray13", "attr": [] },
|
||||
"virtcol_current_gradient": { "fg": "yellow_orange_red", "bg": "gray13", "attr": [] },
|
||||
"col_current": { "fg": "lightskyblue4", "bg": "gray13", "attr": [] }
|
||||
}
|
||||
},
|
||||
"v": {
|
||||
|
|
Loading…
Reference in New Issue