diff --git a/dot_config/nushell/lib/themes.nu b/dot_config/nushell/lib/themes.nu index d221878..1187d22 100644 --- a/dot_config/nushell/lib/themes.nu +++ b/dot_config/nushell/lib/themes.nu @@ -6,7 +6,7 @@ export const light = { # color for nushell primitives separator: dark_gray # 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 empty: blue # Closures can be used to choose colors for specific values. @@ -44,7 +44,7 @@ export const light = { shape_flag: blue_bold shape_float: purple_bold # 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_globpattern: cyan_bold shape_int: purple_bold @@ -53,7 +53,7 @@ export const light = { shape_list: cyan_bold shape_literal: blue shape_match_pattern: green - shape_matching_brackets: { attr: u } + shape_matching_brackets: { attr: blue } shape_nothing: light_cyan shape_operator: yellow shape_or: purple_bold @@ -74,7 +74,7 @@ export const dark = { # color for nushell primitives separator: white # 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 empty: blue # Closures can be used to choose colors for specific values. @@ -112,7 +112,7 @@ export const dark = { shape_flag: blue_bold shape_float: purple_bold # 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_globpattern: cyan_bold shape_int: purple_bold @@ -121,7 +121,7 @@ export const dark = { shape_list: cyan_bold shape_literal: blue shape_match_pattern: green - shape_matching_brackets: { attr: u } + shape_matching_brackets: { attr: blue } shape_nothing: light_cyan shape_operator: yellow shape_or: purple_bold