mirror of
https://github.com/nushell/nushell.git
synced 2025-04-02 12:19:48 +02:00
We only have one valid `datetime` type, but the string representation of that type was `date`. This PR updates the string representation of the `datetime` type to be `datetime` and updates other affected dependencies: * A `describe` example that used `date` * The style computer automatically recognized the new change, but also changed the default `date: purple` to `datetime: purple`. * Likewise, changed the `default_config.nu` to populate `$env.config.color_config.datetime` * Likewise, the dark and light themes in `std/config` * Updates tests * Unrelated, but changed the `into value` error messages to use *"datetime"* if there's an issue. Fixes #9916 and perhaps others. ## Breaking Changes: * Code that expected `describe` to return a `date` will now return a `datetime` * User configs and themes that override `$env.config.color_config.date` will need to be updated to use `datetime`
136 lines
4.5 KiB
Plaintext
136 lines
4.5 KiB
Plaintext
# Returns a dark-mode theme that can be assigned to $env.config.color_config
|
|
export def dark-theme [] {
|
|
{
|
|
# color for nushell primitives
|
|
separator: white
|
|
leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off
|
|
header: green_bold
|
|
empty: blue
|
|
# Closures can be used to choose colors for specific values.
|
|
# The value (in this case, a bool) is piped into the closure.
|
|
# eg) {|| if $in { 'light_cyan' } else { 'light_gray' } }
|
|
bool: light_cyan
|
|
int: white
|
|
filesize: cyan
|
|
duration: white
|
|
datetime: purple
|
|
range: white
|
|
float: white
|
|
string: white
|
|
nothing: white
|
|
binary: white
|
|
cell-path: white
|
|
row_index: green_bold
|
|
record: white
|
|
list: white
|
|
block: white
|
|
hints: dark_gray
|
|
search_result: { bg: red fg: white }
|
|
shape_binary: purple_bold
|
|
shape_block: blue_bold
|
|
shape_bool: light_cyan
|
|
shape_closure: green_bold
|
|
shape_custom: green
|
|
shape_datetime: cyan_bold
|
|
shape_directory: cyan
|
|
shape_external: cyan
|
|
shape_externalarg: green_bold
|
|
shape_external_resolved: light_yellow_bold
|
|
shape_filepath: cyan
|
|
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_glob_interpolation: cyan_bold
|
|
shape_globpattern: cyan_bold
|
|
shape_int: purple_bold
|
|
shape_internalcall: cyan_bold
|
|
shape_keyword: cyan_bold
|
|
shape_list: cyan_bold
|
|
shape_literal: blue
|
|
shape_match_pattern: green
|
|
shape_matching_brackets: { attr: u }
|
|
shape_nothing: light_cyan
|
|
shape_operator: yellow
|
|
shape_pipe: purple_bold
|
|
shape_range: yellow_bold
|
|
shape_record: cyan_bold
|
|
shape_redirection: purple_bold
|
|
shape_signature: green_bold
|
|
shape_string: green
|
|
shape_string_interpolation: cyan_bold
|
|
shape_table: blue_bold
|
|
shape_variable: purple
|
|
shape_vardecl: purple
|
|
shape_raw_string: light_purple
|
|
}
|
|
}
|
|
|
|
# Returns a light-mode theme that can be assigned to $env.config.color_config
|
|
export def light-theme [] {
|
|
{
|
|
# color for nushell primitives
|
|
separator: dark_gray
|
|
leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off
|
|
header: green_bold
|
|
empty: blue
|
|
# Closures can be used to choose colors for specific values.
|
|
# The value (in this case, a bool) is piped into the closure.
|
|
# eg) {|| if $in { 'dark_cyan' } else { 'dark_gray' } }
|
|
bool: dark_cyan
|
|
int: dark_gray
|
|
filesize: cyan_bold
|
|
duration: dark_gray
|
|
datetime: purple
|
|
range: dark_gray
|
|
float: dark_gray
|
|
string: dark_gray
|
|
nothing: dark_gray
|
|
binary: dark_gray
|
|
cell-path: dark_gray
|
|
row_index: green_bold
|
|
record: dark_gray
|
|
list: dark_gray
|
|
block: dark_gray
|
|
hints: dark_gray
|
|
search_result: { fg: white bg: red }
|
|
shape_binary: purple_bold
|
|
shape_block: blue_bold
|
|
shape_bool: light_cyan
|
|
shape_closure: green_bold
|
|
shape_custom: green
|
|
shape_datetime: cyan_bold
|
|
shape_directory: cyan
|
|
shape_external: cyan
|
|
shape_externalarg: green_bold
|
|
shape_external_resolved: light_purple_bold
|
|
shape_filepath: cyan
|
|
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_glob_interpolation: cyan_bold
|
|
shape_globpattern: cyan_bold
|
|
shape_int: purple_bold
|
|
shape_internalcall: cyan_bold
|
|
shape_keyword: cyan_bold
|
|
shape_list: cyan_bold
|
|
shape_literal: blue
|
|
shape_match_pattern: green
|
|
shape_matching_brackets: { attr: u }
|
|
shape_nothing: light_cyan
|
|
shape_operator: yellow
|
|
shape_pipe: purple_bold
|
|
shape_range: yellow_bold
|
|
shape_record: cyan_bold
|
|
shape_redirection: purple_bold
|
|
shape_signature: green_bold
|
|
shape_string: green
|
|
shape_string_interpolation: cyan_bold
|
|
shape_table: blue_bold
|
|
shape_variable: purple
|
|
shape_vardecl: purple
|
|
shape_raw_string: light_purple
|
|
}
|
|
}
|