Use long name instead of one letter for themes

main
Buddy 2 months ago
parent 37b1ca2bf4
commit d0cde7cb7c

@ -6,7 +6,7 @@ export const light = {
# color for nushell primitives # color for nushell primitives
separator: dark_gray separator: dark_gray
# no fg, no bg, attr none effectively turns this off # no fg, no bg, attr none effectively turns this off
leading_trailing_space_bg: { attr: n } leading_trailing_space_bg: { attr: nothing }
header: green_bold header: green_bold
empty: blue empty: blue
# Closures can be used to choose colors for specific values. # Closures can be used to choose colors for specific values.
@ -44,7 +44,7 @@ export const light = {
shape_flag: blue_bold shape_flag: blue_bold
shape_float: purple_bold shape_float: purple_bold
# shapes are used to change the cli syntax highlighting # shapes are used to change the cli syntax highlighting
shape_garbage: { fg: white bg: red attr: b } shape_garbage: { fg: white bg: red attr: bold }
shape_glob_interpolation: cyan_bold shape_glob_interpolation: cyan_bold
shape_globpattern: cyan_bold shape_globpattern: cyan_bold
shape_int: purple_bold shape_int: purple_bold
@ -53,7 +53,7 @@ export const light = {
shape_list: cyan_bold shape_list: cyan_bold
shape_literal: blue shape_literal: blue
shape_match_pattern: green shape_match_pattern: green
shape_matching_brackets: { attr: u } shape_matching_brackets: { attr: blue }
shape_nothing: light_cyan shape_nothing: light_cyan
shape_operator: yellow shape_operator: yellow
shape_or: purple_bold shape_or: purple_bold
@ -74,7 +74,7 @@ export const dark = {
# color for nushell primitives # color for nushell primitives
separator: white separator: white
# no fg, no bg, attr none effectively turns this off # no fg, no bg, attr none effectively turns this off
leading_trailing_space_bg: { attr: n } leading_trailing_space_bg: { attr: nothing }
header: green_bold header: green_bold
empty: blue empty: blue
# Closures can be used to choose colors for specific values. # Closures can be used to choose colors for specific values.
@ -112,7 +112,7 @@ export const dark = {
shape_flag: blue_bold shape_flag: blue_bold
shape_float: purple_bold shape_float: purple_bold
# shapes are used to change the cli syntax highlighting # shapes are used to change the cli syntax highlighting
shape_garbage: { fg: white bg: red attr: b } shape_garbage: { fg: white bg: red attr: bold }
shape_glob_interpolation: cyan_bold shape_glob_interpolation: cyan_bold
shape_globpattern: cyan_bold shape_globpattern: cyan_bold
shape_int: purple_bold shape_int: purple_bold
@ -121,7 +121,7 @@ export const dark = {
shape_list: cyan_bold shape_list: cyan_bold
shape_literal: blue shape_literal: blue
shape_match_pattern: green shape_match_pattern: green
shape_matching_brackets: { attr: u } shape_matching_brackets: { attr: blue }
shape_nothing: light_cyan shape_nothing: light_cyan
shape_operator: yellow shape_operator: yellow
shape_or: purple_bold shape_or: purple_bold

Loading…
Cancel
Save