diff --git a/themes/src/preview-theme.nu b/themes/mod.nu similarity index 79% rename from themes/src/preview-theme.nu rename to themes/mod.nu index bdf0fc1..6a1e938 100644 --- a/themes/src/preview-theme.nu +++ b/themes/mod.nu @@ -1,5 +1,5 @@ # Preview the current nushell theme -def preview_theme [] { +export def "preview theme" [] { let ansi_names = (ansi --list | get name) let all_ansi_names = $ansi_names ++ (ansi --list | get 'short name' | range 133..388) let color_config = ($env.config.color_config | transpose key value) @@ -64,7 +64,7 @@ def preview_small [theme: string@"nu-complete list themes"] { } # Preview the current nushell theme, small mode -def preview_theme_small [] { +export def "preview theme small" [] { let ansi_names = (ansi --list | get name) let all_ansi_names = $ansi_names ++ (ansi --list | get 'short name' | range 133..388) let color_config = ($env.config.color_config | transpose key value) @@ -86,6 +86,8 @@ def preview_theme_small [] { } else { [[key]; [$source_code_replaced]] } + } else if ($row.key == 'background') { + [[key]; [$"($row.key) - ($row.value)"]] } else if ($row.value | describe | str contains 'record') { [[key]; [$"(ansi ($row.value))($row.key) - ($row.value)(ansi reset)"]] } else if ($row.value | str starts-with '#') { @@ -103,10 +105,56 @@ def preview_theme_small [] { # echo $table1 | merge $table2 # This draws the table with three tables merged - let row_count = ($color_table | length) - let row_count_third = (($color_table | length) / 3 | math floor) - let table1 = ($color_table | range 0..$row_count_third | rename key1 val1) - let table2 = ($color_table | range $row_count_third..($row_count_third * 2) | rename key2 val2) - let table3 = ($color_table | range ($row_count_third * 2)..$row_count | rename key3 val3) - echo $table1 | merge $table2 | merge $table3 + let row_count = ( + $color_table + | length + | $in / 3 + | math ceil + ) + + #return ($color_table | group 19) + + let table1 = ($color_table | group $row_count | get 0 | rename "Column 1") + let table2 = ($color_table | group $row_count | get 1 | rename "Column 2") + let table3 = ($color_table | group $row_count | get 2 | rename "Column 3") + + $table1 + | merge $table2 + | merge $table3 + | default '' "Column 3" + | table -e -i false + # Remove heading + | str replace -r '^([^\n]+)(\n[^\n]+){2}' '$1' } + +# Preview what your terminal theme looks like +export def 'preview terminal' [] { + def preview [attr: string] { + let color = $in + $"(ansi -e {fg: $color attr: $attr})($color)(ansi reset)" + } + + let colors = [ + [normal rgb]; + + [black '#000000'] + [red '#FF0000'] + [green '#00FF00'] + [yellow '#FFFF00'] + [blue '#0000FF'] + [magenta '#FF00FF'] + [purple '#FF00FF'] + [cyan '#00FFFF'] + [white '#FFFFFF'] + ] + + $colors | each {|color| { + dimmed: ($color.normal | preview d) + normal: ($color.normal | preview n) + bold: ($color.normal | preview b) + + rgb_dimmed: ($color.rgb | preview d) + rgb_normal: ($color.rgb | preview n) + rgb_bold: ($color.rgb | preview b) + }} +} \ No newline at end of file diff --git a/themes/nu-themes/3024-day.nu b/themes/nu-themes/3024-day.nu index 31251ca..66e5002 100644 --- a/themes/nu-themes/3024-day.nu +++ b/themes/nu-themes/3024-day.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a5a2a2' nothing: '#a5a2a2' binary: '#a5a2a2' - cellpath: '#a5a2a2' + cell-path: '#a5a2a2' row_index: { fg: '#01a252' attr: 'b' } record: '#a5a2a2' list: '#a5a2a2' diff --git a/themes/nu-themes/3024-night.nu b/themes/nu-themes/3024-night.nu index bbbca59..8d52827 100644 --- a/themes/nu-themes/3024-night.nu +++ b/themes/nu-themes/3024-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a5a2a2' nothing: '#a5a2a2' binary: '#a5a2a2' - cellpath: '#a5a2a2' + cell-path: '#a5a2a2' row_index: { fg: '#01a252' attr: 'b' } record: '#a5a2a2' list: '#a5a2a2' diff --git a/themes/nu-themes/3024.nu b/themes/nu-themes/3024.nu index 8d5064e..69ce87b 100644 --- a/themes/nu-themes/3024.nu +++ b/themes/nu-themes/3024.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a5a2a2' nothing: '#a5a2a2' binary: '#a5a2a2' - cellpath: '#a5a2a2' + cell-path: '#a5a2a2' row_index: { fg: '#01a252' attr: 'b' } record: '#a5a2a2' list: '#a5a2a2' diff --git a/themes/nu-themes/abyss.nu b/themes/nu-themes/abyss.nu index ffda6c4..d42b86a 100644 --- a/themes/nu-themes/abyss.nu +++ b/themes/nu-themes/abyss.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a0cce2' nothing: '#a0cce2' binary: '#a0cce2' - cellpath: '#a0cce2' + cell-path: '#a0cce2' row_index: { fg: '#10598b' attr: 'b' } record: '#a0cce2' list: '#a0cce2' diff --git a/themes/nu-themes/aci.nu b/themes/nu-themes/aci.nu index ae6d792..f01f8d1 100644 --- a/themes/nu-themes/aci.nu +++ b/themes/nu-themes/aci.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b6b6b6' nothing: '#b6b6b6' binary: '#b6b6b6' - cellpath: '#b6b6b6' + cell-path: '#b6b6b6' row_index: { fg: '#83ff08' attr: 'b' } record: '#b6b6b6' list: '#b6b6b6' diff --git a/themes/nu-themes/aco.nu b/themes/nu-themes/aco.nu index 8ecd716..0fadf7d 100644 --- a/themes/nu-themes/aco.nu +++ b/themes/nu-themes/aco.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bebebe' nothing: '#bebebe' binary: '#bebebe' - cellpath: '#bebebe' + cell-path: '#bebebe' row_index: { fg: '#83ff08' attr: 'b' } record: '#bebebe' list: '#bebebe' diff --git a/themes/nu-themes/adventuretime.nu b/themes/nu-themes/adventuretime.nu index 076b6de..dee230d 100644 --- a/themes/nu-themes/adventuretime.nu +++ b/themes/nu-themes/adventuretime.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f8dcc0' nothing: '#f8dcc0' binary: '#f8dcc0' - cellpath: '#f8dcc0' + cell-path: '#f8dcc0' row_index: { fg: '#4ab118' attr: 'b' } record: '#f8dcc0' list: '#f8dcc0' diff --git a/themes/nu-themes/afterglow.nu b/themes/nu-themes/afterglow.nu index 1de891c..4fc84e0 100644 --- a/themes/nu-themes/afterglow.nu +++ b/themes/nu-themes/afterglow.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#7b9246' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/alien-blood.nu b/themes/nu-themes/alien-blood.nu index b961118..e91601a 100644 --- a/themes/nu-themes/alien-blood.nu +++ b/themes/nu-themes/alien-blood.nu @@ -37,7 +37,7 @@ export def main [] { string: '#647d75' nothing: '#647d75' binary: '#647d75' - cellpath: '#647d75' + cell-path: '#647d75' row_index: { fg: '#2f7e25' attr: 'b' } record: '#647d75' list: '#647d75' diff --git a/themes/nu-themes/alucard.nu b/themes/nu-themes/alucard.nu index 7e98b34..e1eae0d 100644 --- a/themes/nu-themes/alucard.nu +++ b/themes/nu-themes/alucard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#fa0074' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/amora.nu b/themes/nu-themes/amora.nu index dc067a6..7dfe492 100644 --- a/themes/nu-themes/amora.nu +++ b/themes/nu-themes/amora.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dedbeb' nothing: '#dedbeb' binary: '#dedbeb' - cellpath: '#dedbeb' + cell-path: '#dedbeb' row_index: { fg: '#a2baa8' attr: 'b' } record: '#dedbeb' list: '#dedbeb' diff --git a/themes/nu-themes/apathy.nu b/themes/nu-themes/apathy.nu index 369580a..9ddbad7 100644 --- a/themes/nu-themes/apathy.nu +++ b/themes/nu-themes/apathy.nu @@ -37,7 +37,7 @@ export def main [] { string: '#81b5ac' nothing: '#81b5ac' binary: '#81b5ac' - cellpath: '#81b5ac' + cell-path: '#81b5ac' row_index: { fg: '#883e96' attr: 'b' } record: '#81b5ac' list: '#81b5ac' diff --git a/themes/nu-themes/apprentice.nu b/themes/nu-themes/apprentice.nu index e391a83..22d83d6 100644 --- a/themes/nu-themes/apprentice.nu +++ b/themes/nu-themes/apprentice.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bcbcbc' nothing: '#bcbcbc' binary: '#bcbcbc' - cellpath: '#bcbcbc' + cell-path: '#bcbcbc' row_index: { fg: '#87af87' attr: 'b' } record: '#bcbcbc' list: '#bcbcbc' diff --git a/themes/nu-themes/argonaut.nu b/themes/nu-themes/argonaut.nu index 5607726..0145c3e 100644 --- a/themes/nu-themes/argonaut.nu +++ b/themes/nu-themes/argonaut.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#8ce10b' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/arthur.nu b/themes/nu-themes/arthur.nu index e2dac1a..4b6fad0 100644 --- a/themes/nu-themes/arthur.nu +++ b/themes/nu-themes/arthur.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbaa99' nothing: '#bbaa99' binary: '#bbaa99' - cellpath: '#bbaa99' + cell-path: '#bbaa99' row_index: { fg: '#86af80' attr: 'b' } record: '#bbaa99' list: '#bbaa99' diff --git a/themes/nu-themes/ashes.nu b/themes/nu-themes/ashes.nu index bb18ed6..6d34cc6 100644 --- a/themes/nu-themes/ashes.nu +++ b/themes/nu-themes/ashes.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c7ccd1' nothing: '#c7ccd1' binary: '#c7ccd1' - cellpath: '#c7ccd1' + cell-path: '#c7ccd1' row_index: { fg: '#95c7ae' attr: 'b' } record: '#c7ccd1' list: '#c7ccd1' diff --git a/themes/nu-themes/atelier-cave-light.nu b/themes/nu-themes/atelier-cave-light.nu index 7deac71..5aff513 100644 --- a/themes/nu-themes/atelier-cave-light.nu +++ b/themes/nu-themes/atelier-cave-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#585260' nothing: '#585260' binary: '#585260' - cellpath: '#585260' + cell-path: '#585260' row_index: { fg: '#2a9292' attr: 'b' } record: '#585260' list: '#585260' diff --git a/themes/nu-themes/atelier-cave.nu b/themes/nu-themes/atelier-cave.nu index cbd30b6..dd252de 100644 --- a/themes/nu-themes/atelier-cave.nu +++ b/themes/nu-themes/atelier-cave.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8b8792' nothing: '#8b8792' binary: '#8b8792' - cellpath: '#8b8792' + cell-path: '#8b8792' row_index: { fg: '#2a9292' attr: 'b' } record: '#8b8792' list: '#8b8792' diff --git a/themes/nu-themes/atelier-dune-light.nu b/themes/nu-themes/atelier-dune-light.nu index bc398f9..2ed6cbc 100644 --- a/themes/nu-themes/atelier-dune-light.nu +++ b/themes/nu-themes/atelier-dune-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6e6b5e' nothing: '#6e6b5e' binary: '#6e6b5e' - cellpath: '#6e6b5e' + cell-path: '#6e6b5e' row_index: { fg: '#60ac39' attr: 'b' } record: '#6e6b5e' list: '#6e6b5e' diff --git a/themes/nu-themes/atelier-dune.nu b/themes/nu-themes/atelier-dune.nu index eefc66d..d5e91b7 100644 --- a/themes/nu-themes/atelier-dune.nu +++ b/themes/nu-themes/atelier-dune.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a6a28c' nothing: '#a6a28c' binary: '#a6a28c' - cellpath: '#a6a28c' + cell-path: '#a6a28c' row_index: { fg: '#60ac39' attr: 'b' } record: '#a6a28c' list: '#a6a28c' diff --git a/themes/nu-themes/atelier-estuary-light.nu b/themes/nu-themes/atelier-estuary-light.nu index 0d24482..2358d2e 100644 --- a/themes/nu-themes/atelier-estuary-light.nu +++ b/themes/nu-themes/atelier-estuary-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5f5e4e' nothing: '#5f5e4e' binary: '#5f5e4e' - cellpath: '#5f5e4e' + cell-path: '#5f5e4e' row_index: { fg: '#7d9726' attr: 'b' } record: '#5f5e4e' list: '#5f5e4e' diff --git a/themes/nu-themes/atelier-estuary.nu b/themes/nu-themes/atelier-estuary.nu index c4ff550..4d64db6 100644 --- a/themes/nu-themes/atelier-estuary.nu +++ b/themes/nu-themes/atelier-estuary.nu @@ -37,7 +37,7 @@ export def main [] { string: '#929181' nothing: '#929181' binary: '#929181' - cellpath: '#929181' + cell-path: '#929181' row_index: { fg: '#7d9726' attr: 'b' } record: '#929181' list: '#929181' diff --git a/themes/nu-themes/atelier-forest-light.nu b/themes/nu-themes/atelier-forest-light.nu index 0132050..dff0677 100644 --- a/themes/nu-themes/atelier-forest-light.nu +++ b/themes/nu-themes/atelier-forest-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#68615e' nothing: '#68615e' binary: '#68615e' - cellpath: '#68615e' + cell-path: '#68615e' row_index: { fg: '#7b9726' attr: 'b' } record: '#68615e' list: '#68615e' diff --git a/themes/nu-themes/atelier-forest.nu b/themes/nu-themes/atelier-forest.nu index 90fdb18..90c2006 100644 --- a/themes/nu-themes/atelier-forest.nu +++ b/themes/nu-themes/atelier-forest.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a8a19f' nothing: '#a8a19f' binary: '#a8a19f' - cellpath: '#a8a19f' + cell-path: '#a8a19f' row_index: { fg: '#7b9726' attr: 'b' } record: '#a8a19f' list: '#a8a19f' diff --git a/themes/nu-themes/atelier-heath-light.nu b/themes/nu-themes/atelier-heath-light.nu index ab7a851..8b7409e 100644 --- a/themes/nu-themes/atelier-heath-light.nu +++ b/themes/nu-themes/atelier-heath-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#695d69' nothing: '#695d69' binary: '#695d69' - cellpath: '#695d69' + cell-path: '#695d69' row_index: { fg: '#918b3b' attr: 'b' } record: '#695d69' list: '#695d69' diff --git a/themes/nu-themes/atelier-heath.nu b/themes/nu-themes/atelier-heath.nu index d8b6ad8..51d1941 100644 --- a/themes/nu-themes/atelier-heath.nu +++ b/themes/nu-themes/atelier-heath.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ab9bab' nothing: '#ab9bab' binary: '#ab9bab' - cellpath: '#ab9bab' + cell-path: '#ab9bab' row_index: { fg: '#918b3b' attr: 'b' } record: '#ab9bab' list: '#ab9bab' diff --git a/themes/nu-themes/atelier-lakeside-light.nu b/themes/nu-themes/atelier-lakeside-light.nu index ffe96fe..c0b71dd 100644 --- a/themes/nu-themes/atelier-lakeside-light.nu +++ b/themes/nu-themes/atelier-lakeside-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#516d7b' nothing: '#516d7b' binary: '#516d7b' - cellpath: '#516d7b' + cell-path: '#516d7b' row_index: { fg: '#568c3b' attr: 'b' } record: '#516d7b' list: '#516d7b' diff --git a/themes/nu-themes/atelier-lakeside.nu b/themes/nu-themes/atelier-lakeside.nu index 8f25d7c..2b7792e 100644 --- a/themes/nu-themes/atelier-lakeside.nu +++ b/themes/nu-themes/atelier-lakeside.nu @@ -37,7 +37,7 @@ export def main [] { string: '#7ea2b4' nothing: '#7ea2b4' binary: '#7ea2b4' - cellpath: '#7ea2b4' + cell-path: '#7ea2b4' row_index: { fg: '#568c3b' attr: 'b' } record: '#7ea2b4' list: '#7ea2b4' diff --git a/themes/nu-themes/atelier-plateau-light.nu b/themes/nu-themes/atelier-plateau-light.nu index ae7cd6e..2241c31 100644 --- a/themes/nu-themes/atelier-plateau-light.nu +++ b/themes/nu-themes/atelier-plateau-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#585050' nothing: '#585050' binary: '#585050' - cellpath: '#585050' + cell-path: '#585050' row_index: { fg: '#4b8b8b' attr: 'b' } record: '#585050' list: '#585050' diff --git a/themes/nu-themes/atelier-plateau.nu b/themes/nu-themes/atelier-plateau.nu index 8e124ff..0de8aae 100644 --- a/themes/nu-themes/atelier-plateau.nu +++ b/themes/nu-themes/atelier-plateau.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8a8585' nothing: '#8a8585' binary: '#8a8585' - cellpath: '#8a8585' + cell-path: '#8a8585' row_index: { fg: '#4b8b8b' attr: 'b' } record: '#8a8585' list: '#8a8585' diff --git a/themes/nu-themes/atelier-savanna-light.nu b/themes/nu-themes/atelier-savanna-light.nu index 94e413d..1d6c7ce 100644 --- a/themes/nu-themes/atelier-savanna-light.nu +++ b/themes/nu-themes/atelier-savanna-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#526057' nothing: '#526057' binary: '#526057' - cellpath: '#526057' + cell-path: '#526057' row_index: { fg: '#489963' attr: 'b' } record: '#526057' list: '#526057' diff --git a/themes/nu-themes/atelier-savanna.nu b/themes/nu-themes/atelier-savanna.nu index 6ddecd1..af496bb 100644 --- a/themes/nu-themes/atelier-savanna.nu +++ b/themes/nu-themes/atelier-savanna.nu @@ -37,7 +37,7 @@ export def main [] { string: '#87928a' nothing: '#87928a' binary: '#87928a' - cellpath: '#87928a' + cell-path: '#87928a' row_index: { fg: '#489963' attr: 'b' } record: '#87928a' list: '#87928a' diff --git a/themes/nu-themes/atelier-seaside-light.nu b/themes/nu-themes/atelier-seaside-light.nu index acebc5e..5013eee 100644 --- a/themes/nu-themes/atelier-seaside-light.nu +++ b/themes/nu-themes/atelier-seaside-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5e6e5e' nothing: '#5e6e5e' binary: '#5e6e5e' - cellpath: '#5e6e5e' + cell-path: '#5e6e5e' row_index: { fg: '#29a329' attr: 'b' } record: '#5e6e5e' list: '#5e6e5e' diff --git a/themes/nu-themes/atelier-seaside.nu b/themes/nu-themes/atelier-seaside.nu index 344c731..c6927a9 100644 --- a/themes/nu-themes/atelier-seaside.nu +++ b/themes/nu-themes/atelier-seaside.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8ca68c' nothing: '#8ca68c' binary: '#8ca68c' - cellpath: '#8ca68c' + cell-path: '#8ca68c' row_index: { fg: '#29a329' attr: 'b' } record: '#8ca68c' list: '#8ca68c' diff --git a/themes/nu-themes/atelier-sulphurpool-light.nu b/themes/nu-themes/atelier-sulphurpool-light.nu index c69cdb5..0ada264 100644 --- a/themes/nu-themes/atelier-sulphurpool-light.nu +++ b/themes/nu-themes/atelier-sulphurpool-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5e6687' nothing: '#5e6687' binary: '#5e6687' - cellpath: '#5e6687' + cell-path: '#5e6687' row_index: { fg: '#ac9739' attr: 'b' } record: '#5e6687' list: '#5e6687' diff --git a/themes/nu-themes/atelier-sulphurpool.nu b/themes/nu-themes/atelier-sulphurpool.nu index 4d985e9..a916165 100644 --- a/themes/nu-themes/atelier-sulphurpool.nu +++ b/themes/nu-themes/atelier-sulphurpool.nu @@ -37,7 +37,7 @@ export def main [] { string: '#979db4' nothing: '#979db4' binary: '#979db4' - cellpath: '#979db4' + cell-path: '#979db4' row_index: { fg: '#ac9739' attr: 'b' } record: '#979db4' list: '#979db4' diff --git a/themes/nu-themes/atlas.nu b/themes/nu-themes/atlas.nu index 564db9c..6e6631b 100644 --- a/themes/nu-themes/atlas.nu +++ b/themes/nu-themes/atlas.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a1a19a' nothing: '#a1a19a' binary: '#a1a19a' - cellpath: '#a1a19a' + cell-path: '#a1a19a' row_index: { fg: '#7fc06e' attr: 'b' } record: '#a1a19a' list: '#a1a19a' diff --git a/themes/nu-themes/atom-one-light.nu b/themes/nu-themes/atom-one-light.nu index 52822ae..4f28ac5 100644 --- a/themes/nu-themes/atom-one-light.nu +++ b/themes/nu-themes/atom-one-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#3e953a' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/atom.nu b/themes/nu-themes/atom.nu index b950d18..f0c40f2 100644 --- a/themes/nu-themes/atom.nu +++ b/themes/nu-themes/atom.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0e0e0' nothing: '#e0e0e0' binary: '#e0e0e0' - cellpath: '#e0e0e0' + cell-path: '#e0e0e0' row_index: { fg: '#87c38a' attr: 'b' } record: '#e0e0e0' list: '#e0e0e0' diff --git a/themes/nu-themes/ayu-light.nu b/themes/nu-themes/ayu-light.nu index a1c7105..88c7ee0 100644 --- a/themes/nu-themes/ayu-light.nu +++ b/themes/nu-themes/ayu-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#86b200' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/ayu-mirage-simple-cursor.nu b/themes/nu-themes/ayu-mirage-simple-cursor.nu index c18d671..76b3619 100644 --- a/themes/nu-themes/ayu-mirage-simple-cursor.nu +++ b/themes/nu-themes/ayu-mirage-simple-cursor.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c7c7c7' nothing: '#c7c7c7' binary: '#c7c7c7' - cellpath: '#c7c7c7' + cell-path: '#c7c7c7' row_index: { fg: '#a6cc70' attr: 'b' } record: '#c7c7c7' list: '#c7c7c7' diff --git a/themes/nu-themes/ayu-mirage.nu b/themes/nu-themes/ayu-mirage.nu index 380a68e..3b19881 100644 --- a/themes/nu-themes/ayu-mirage.nu +++ b/themes/nu-themes/ayu-mirage.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c7c7c7' nothing: '#c7c7c7' binary: '#c7c7c7' - cellpath: '#c7c7c7' + cell-path: '#c7c7c7' row_index: { fg: '#a6cc70' attr: 'b' } record: '#c7c7c7' list: '#c7c7c7' diff --git a/themes/nu-themes/ayu.nu b/themes/nu-themes/ayu.nu index 6c882a1..078f676 100644 --- a/themes/nu-themes/ayu.nu +++ b/themes/nu-themes/ayu.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#b8cc52' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/azu.nu b/themes/nu-themes/azu.nu index bb0a82a..c7d43db 100644 --- a/themes/nu-themes/azu.nu +++ b/themes/nu-themes/azu.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e6e6e6' nothing: '#e6e6e6' binary: '#e6e6e6' - cellpath: '#e6e6e6' + cell-path: '#e6e6e6' row_index: { fg: '#74ac6d' attr: 'b' } record: '#e6e6e6' list: '#e6e6e6' diff --git a/themes/nu-themes/batman.nu b/themes/nu-themes/batman.nu index fa0a2ce..8090bbd 100644 --- a/themes/nu-themes/batman.nu +++ b/themes/nu-themes/batman.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5c5be' nothing: '#c5c5be' binary: '#c5c5be' - cellpath: '#c5c5be' + cell-path: '#c5c5be' row_index: { fg: '#c8be46' attr: 'b' } record: '#c5c5be' list: '#c5c5be' diff --git a/themes/nu-themes/belafonte-day.nu b/themes/nu-themes/belafonte-day.nu index 4fd9ec2..cce164f 100644 --- a/themes/nu-themes/belafonte-day.nu +++ b/themes/nu-themes/belafonte-day.nu @@ -37,7 +37,7 @@ export def main [] { string: '#968c83' nothing: '#968c83' binary: '#968c83' - cellpath: '#968c83' + cell-path: '#968c83' row_index: { fg: '#858162' attr: 'b' } record: '#968c83' list: '#968c83' diff --git a/themes/nu-themes/belafonte-night.nu b/themes/nu-themes/belafonte-night.nu index f0f8b88..289da5e 100644 --- a/themes/nu-themes/belafonte-night.nu +++ b/themes/nu-themes/belafonte-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#968c83' nothing: '#968c83' binary: '#968c83' - cellpath: '#968c83' + cell-path: '#968c83' row_index: { fg: '#858162' attr: 'b' } record: '#968c83' list: '#968c83' diff --git a/themes/nu-themes/bespin.nu b/themes/nu-themes/bespin.nu index 2c4f7d1..b48bc18 100644 --- a/themes/nu-themes/bespin.nu +++ b/themes/nu-themes/bespin.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8a8986' nothing: '#8a8986' binary: '#8a8986' - cellpath: '#8a8986' + cell-path: '#8a8986' row_index: { fg: '#54be0d' attr: 'b' } record: '#8a8986' list: '#8a8986' diff --git a/themes/nu-themes/bim.nu b/themes/nu-themes/bim.nu index adc4667..3200f61 100644 --- a/themes/nu-themes/bim.nu +++ b/themes/nu-themes/bim.nu @@ -37,7 +37,7 @@ export def main [] { string: '#918988' nothing: '#918988' binary: '#918988' - cellpath: '#918988' + cell-path: '#918988' row_index: { fg: '#a9ee55' attr: 'b' } record: '#918988' list: '#918988' diff --git a/themes/nu-themes/birds-of-paradise.nu b/themes/nu-themes/birds-of-paradise.nu index 8d2d4f2..28ac77c 100644 --- a/themes/nu-themes/birds-of-paradise.nu +++ b/themes/nu-themes/birds-of-paradise.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0dbb7' nothing: '#e0dbb7' binary: '#e0dbb7' - cellpath: '#e0dbb7' + cell-path: '#e0dbb7' row_index: { fg: '#6ba18a' attr: 'b' } record: '#e0dbb7' list: '#e0dbb7' diff --git a/themes/nu-themes/black-metal-bathory.nu b/themes/nu-themes/black-metal-bathory.nu index 81c2ac4..8ca6ecf 100644 --- a/themes/nu-themes/black-metal-bathory.nu +++ b/themes/nu-themes/black-metal-bathory.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#fbcb97' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-burzum.nu b/themes/nu-themes/black-metal-burzum.nu index aeb7392..0f606bb 100644 --- a/themes/nu-themes/black-metal-burzum.nu +++ b/themes/nu-themes/black-metal-burzum.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#ddeecc' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-dark-funeral.nu b/themes/nu-themes/black-metal-dark-funeral.nu index 81f1a47..82402b4 100644 --- a/themes/nu-themes/black-metal-dark-funeral.nu +++ b/themes/nu-themes/black-metal-dark-funeral.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#d0dfee' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-gorgoroth.nu b/themes/nu-themes/black-metal-gorgoroth.nu index d9af80b..d14f117 100644 --- a/themes/nu-themes/black-metal-gorgoroth.nu +++ b/themes/nu-themes/black-metal-gorgoroth.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#9b8d7f' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-immortal.nu b/themes/nu-themes/black-metal-immortal.nu index 152b51d..a8c7532 100644 --- a/themes/nu-themes/black-metal-immortal.nu +++ b/themes/nu-themes/black-metal-immortal.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#7799bb' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-khold.nu b/themes/nu-themes/black-metal-khold.nu index 1a0b8be..0a3cebd 100644 --- a/themes/nu-themes/black-metal-khold.nu +++ b/themes/nu-themes/black-metal-khold.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#eceee3' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-marduk.nu b/themes/nu-themes/black-metal-marduk.nu index eaf6c81..ab95afb 100644 --- a/themes/nu-themes/black-metal-marduk.nu +++ b/themes/nu-themes/black-metal-marduk.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#a5aaa7' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-mayhem.nu b/themes/nu-themes/black-metal-mayhem.nu index 3a32f13..d89b578 100644 --- a/themes/nu-themes/black-metal-mayhem.nu +++ b/themes/nu-themes/black-metal-mayhem.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#f3ecd4' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-nile.nu b/themes/nu-themes/black-metal-nile.nu index 020ef78..f3d92f6 100644 --- a/themes/nu-themes/black-metal-nile.nu +++ b/themes/nu-themes/black-metal-nile.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#aa9988' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal-venom.nu b/themes/nu-themes/black-metal-venom.nu index 7a74ada..be71447 100644 --- a/themes/nu-themes/black-metal-venom.nu +++ b/themes/nu-themes/black-metal-venom.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#f8f7f2' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/black-metal.nu b/themes/nu-themes/black-metal.nu index b099ee5..c101b24 100644 --- a/themes/nu-themes/black-metal.nu +++ b/themes/nu-themes/black-metal.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c1c1' nothing: '#c1c1c1' binary: '#c1c1c1' - cellpath: '#c1c1c1' + cell-path: '#c1c1c1' row_index: { fg: '#dd9999' attr: 'b' } record: '#c1c1c1' list: '#c1c1c1' diff --git a/themes/nu-themes/blazer.nu b/themes/nu-themes/blazer.nu index 270610c..61a4cb6 100644 --- a/themes/nu-themes/blazer.nu +++ b/themes/nu-themes/blazer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#7ab87a' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/borland.nu b/themes/nu-themes/borland.nu index 78fb5c1..18e63cb 100644 --- a/themes/nu-themes/borland.nu +++ b/themes/nu-themes/borland.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeeeee' nothing: '#eeeeee' binary: '#eeeeee' - cellpath: '#eeeeee' + cell-path: '#eeeeee' row_index: { fg: '#a8ff60' attr: 'b' } record: '#eeeeee' list: '#eeeeee' diff --git a/themes/nu-themes/brewer.nu b/themes/nu-themes/brewer.nu index b116eaf..7e093be 100644 --- a/themes/nu-themes/brewer.nu +++ b/themes/nu-themes/brewer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b7b8b9' nothing: '#b7b8b9' binary: '#b7b8b9' - cellpath: '#b7b8b9' + cell-path: '#b7b8b9' row_index: { fg: '#31a354' attr: 'b' } record: '#b7b8b9' list: '#b7b8b9' diff --git a/themes/nu-themes/bright-lights.nu b/themes/nu-themes/bright-lights.nu index 2444a58..45bcb97 100644 --- a/themes/nu-themes/bright-lights.nu +++ b/themes/nu-themes/bright-lights.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c8d6' nothing: '#c1c8d6' binary: '#c1c8d6' - cellpath: '#c1c8d6' + cell-path: '#c1c8d6' row_index: { fg: '#b6e875' attr: 'b' } record: '#c1c8d6' list: '#c1c8d6' diff --git a/themes/nu-themes/bright.nu b/themes/nu-themes/bright.nu index 4e92f7f..5a6e555 100644 --- a/themes/nu-themes/bright.nu +++ b/themes/nu-themes/bright.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0e0e0' nothing: '#e0e0e0' binary: '#e0e0e0' - cellpath: '#e0e0e0' + cell-path: '#e0e0e0' row_index: { fg: '#a1c659' attr: 'b' } record: '#e0e0e0' list: '#e0e0e0' diff --git a/themes/nu-themes/broadcast.nu b/themes/nu-themes/broadcast.nu index d54a8cf..5d3091c 100644 --- a/themes/nu-themes/broadcast.nu +++ b/themes/nu-themes/broadcast.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#519f50' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/brogrammer.nu b/themes/nu-themes/brogrammer.nu index fe4a57d..eb5eed9 100644 --- a/themes/nu-themes/brogrammer.nu +++ b/themes/nu-themes/brogrammer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#4e5ab7' nothing: '#4e5ab7' binary: '#4e5ab7' - cellpath: '#4e5ab7' + cell-path: '#4e5ab7' row_index: { fg: '#f3bd09' attr: 'b' } record: '#4e5ab7' list: '#4e5ab7' diff --git a/themes/nu-themes/brushtrees-dark.nu b/themes/nu-themes/brushtrees-dark.nu index 56f2a90..05b33f2 100644 --- a/themes/nu-themes/brushtrees-dark.nu +++ b/themes/nu-themes/brushtrees-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b0c5c8' nothing: '#b0c5c8' binary: '#b0c5c8' - cellpath: '#b0c5c8' + cell-path: '#b0c5c8' row_index: { fg: '#87b386' attr: 'b' } record: '#b0c5c8' list: '#b0c5c8' diff --git a/themes/nu-themes/brushtrees.nu b/themes/nu-themes/brushtrees.nu index d0bf191..9565c58 100644 --- a/themes/nu-themes/brushtrees.nu +++ b/themes/nu-themes/brushtrees.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6d828e' nothing: '#6d828e' binary: '#6d828e' - cellpath: '#6d828e' + cell-path: '#6d828e' row_index: { fg: '#87b386' attr: 'b' } record: '#6d828e' list: '#6d828e' diff --git a/themes/nu-themes/c64.nu b/themes/nu-themes/c64.nu index 2ee12ef..67ee1eb 100644 --- a/themes/nu-themes/c64.nu +++ b/themes/nu-themes/c64.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#55a049' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/cai.nu b/themes/nu-themes/cai.nu index cb32967..8030cc0 100644 --- a/themes/nu-themes/cai.nu +++ b/themes/nu-themes/cai.nu @@ -37,7 +37,7 @@ export def main [] { string: '#808080' nothing: '#808080' binary: '#808080' - cellpath: '#808080' + cell-path: '#808080' row_index: { fg: '#4dca27' attr: 'b' } record: '#808080' list: '#808080' diff --git a/themes/nu-themes/catppuccin-latte.nu b/themes/nu-themes/catppuccin-latte.nu index 4b6672f..b6211ce 100644 --- a/themes/nu-themes/catppuccin-latte.nu +++ b/themes/nu-themes/catppuccin-latte.nu @@ -1,5 +1,5 @@ # Retrieve the theme settings -export def main [] { +export def main [] { const color_palette = { rosewater: "#dc8a78" flamingo: "#dd7878" @@ -68,7 +68,7 @@ export def main [] { string: $color_palette.text nothing: $color_palette.text binary: $color_palette.text - cellpath: $color_palette.text + 'cell-path': $color_palette.text row_index: { fg: $color_palette.mauve attr: "b" } record: $color_palette.text list: $color_palette.text diff --git a/themes/nu-themes/catppuccin-mocha.nu b/themes/nu-themes/catppuccin-mocha.nu index b011098..3a76c18 100644 --- a/themes/nu-themes/catppuccin-mocha.nu +++ b/themes/nu-themes/catppuccin-mocha.nu @@ -1,5 +1,5 @@ # Retrieve the theme settings -export def main [] { +export def main [] { const color_palette = { rosewater: "#f5e0dc" flamingo: "#f2cdcd" @@ -27,8 +27,8 @@ export def main [] { base: "#1e1e2e" mantle: "#181825" crust: "#11111b" - } - + } + return { separator: $color_palette.overlay0 leading_trailing_space_bg: { attr: "n" } @@ -68,7 +68,7 @@ export def main [] { string: $color_palette.text nothing: $color_palette.text binary: $color_palette.text - cellpath: $color_palette.text + 'cell-path': $color_palette.text row_index: { fg: $color_palette.mauve attr: "b" } record: $color_palette.text list: $color_palette.text diff --git a/themes/nu-themes/chalk.nu b/themes/nu-themes/chalk.nu index b39c226..bf67efc 100644 --- a/themes/nu-themes/chalk.nu +++ b/themes/nu-themes/chalk.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#acc267' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/chalkboard.nu b/themes/nu-themes/chalkboard.nu index 402ac10..c6f8081 100644 --- a/themes/nu-themes/chalkboard.nu +++ b/themes/nu-themes/chalkboard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#72c373' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/challenger-deep.nu b/themes/nu-themes/challenger-deep.nu index 00c47fd..f61f8eb 100644 --- a/themes/nu-themes/challenger-deep.nu +++ b/themes/nu-themes/challenger-deep.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbe3e7' nothing: '#cbe3e7' binary: '#cbe3e7' - cellpath: '#cbe3e7' + cell-path: '#cbe3e7' row_index: { fg: '#95ffa4' attr: 'b' } record: '#cbe3e7' list: '#cbe3e7' diff --git a/themes/nu-themes/ciapre.nu b/themes/nu-themes/ciapre.nu index 5c01691..36bd25b 100644 --- a/themes/nu-themes/ciapre.nu +++ b/themes/nu-themes/ciapre.nu @@ -37,7 +37,7 @@ export def main [] { string: '#aea47f' nothing: '#aea47f' binary: '#aea47f' - cellpath: '#aea47f' + cell-path: '#aea47f' row_index: { fg: '#48513b' attr: 'b' } record: '#aea47f' list: '#aea47f' diff --git a/themes/nu-themes/circus.nu b/themes/nu-themes/circus.nu index d2fa777..d3f1c12 100644 --- a/themes/nu-themes/circus.nu +++ b/themes/nu-themes/circus.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a7a7a7' nothing: '#a7a7a7' binary: '#a7a7a7' - cellpath: '#a7a7a7' + cell-path: '#a7a7a7' row_index: { fg: '#84b97c' attr: 'b' } record: '#a7a7a7' list: '#a7a7a7' diff --git a/themes/nu-themes/classic-dark.nu b/themes/nu-themes/classic-dark.nu index f578eb5..9654e42 100644 --- a/themes/nu-themes/classic-dark.nu +++ b/themes/nu-themes/classic-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#90a959' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/classic-light.nu b/themes/nu-themes/classic-light.nu index b635e1b..25a3404 100644 --- a/themes/nu-themes/classic-light.nu +++ b/themes/nu-themes/classic-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#303030' nothing: '#303030' binary: '#303030' - cellpath: '#303030' + cell-path: '#303030' row_index: { fg: '#90a959' attr: 'b' } record: '#303030' list: '#303030' diff --git a/themes/nu-themes/clone-of-ubuntu.nu b/themes/nu-themes/clone-of-ubuntu.nu index d08917e..cd03b66 100644 --- a/themes/nu-themes/clone-of-ubuntu.nu +++ b/themes/nu-themes/clone-of-ubuntu.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d7cf' nothing: '#d3d7cf' binary: '#d3d7cf' - cellpath: '#d3d7cf' + cell-path: '#d3d7cf' row_index: { fg: '#4e9a06' attr: 'b' } record: '#d3d7cf' list: '#d3d7cf' diff --git a/themes/nu-themes/clrs.nu b/themes/nu-themes/clrs.nu index af499f8..9636ebb 100644 --- a/themes/nu-themes/clrs.nu +++ b/themes/nu-themes/clrs.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b3b3b3' nothing: '#b3b3b3' binary: '#b3b3b3' - cellpath: '#b3b3b3' + cell-path: '#b3b3b3' row_index: { fg: '#328a5d' attr: 'b' } record: '#b3b3b3' list: '#b3b3b3' diff --git a/themes/nu-themes/cobalt-neon.nu b/themes/nu-themes/cobalt-neon.nu index ebca6ab..de8384c 100644 --- a/themes/nu-themes/cobalt-neon.nu +++ b/themes/nu-themes/cobalt-neon.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ba46b2' nothing: '#ba46b2' binary: '#ba46b2' - cellpath: '#ba46b2' + cell-path: '#ba46b2' row_index: { fg: '#3ba5ff' attr: 'b' } record: '#ba46b2' list: '#ba46b2' diff --git a/themes/nu-themes/cobalt2.nu b/themes/nu-themes/cobalt2.nu index e83e18b..09e2b94 100644 --- a/themes/nu-themes/cobalt2.nu +++ b/themes/nu-themes/cobalt2.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#38de21' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/codeschool.nu b/themes/nu-themes/codeschool.nu index b4cba89..e2ba614 100644 --- a/themes/nu-themes/codeschool.nu +++ b/themes/nu-themes/codeschool.nu @@ -37,7 +37,7 @@ export def main [] { string: '#9ea7a6' nothing: '#9ea7a6' binary: '#9ea7a6' - cellpath: '#9ea7a6' + cell-path: '#9ea7a6' row_index: { fg: '#237986' attr: 'b' } record: '#9ea7a6' list: '#9ea7a6' diff --git a/themes/nu-themes/corvine.nu b/themes/nu-themes/corvine.nu index 595e21a..5be9efc 100644 --- a/themes/nu-themes/corvine.nu +++ b/themes/nu-themes/corvine.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c6c6c6' nothing: '#c6c6c6' binary: '#c6c6c6' - cellpath: '#c6c6c6' + cell-path: '#c6c6c6' row_index: { fg: '#87af5f' attr: 'b' } record: '#c6c6c6' list: '#c6c6c6' diff --git a/themes/nu-themes/crayon-pony-fish.nu b/themes/nu-themes/crayon-pony-fish.nu index 3573fbf..06b5c09 100644 --- a/themes/nu-themes/crayon-pony-fish.nu +++ b/themes/nu-themes/crayon-pony-fish.nu @@ -37,7 +37,7 @@ export def main [] { string: '#68525a' nothing: '#68525a' binary: '#68525a' - cellpath: '#68525a' + cell-path: '#68525a' row_index: { fg: '#579524' attr: 'b' } record: '#68525a' list: '#68525a' diff --git a/themes/nu-themes/cupcake.nu b/themes/nu-themes/cupcake.nu index 4683312..5ed4291 100644 --- a/themes/nu-themes/cupcake.nu +++ b/themes/nu-themes/cupcake.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8b8198' nothing: '#8b8198' binary: '#8b8198' - cellpath: '#8b8198' + cell-path: '#8b8198' row_index: { fg: '#a3b367' attr: 'b' } record: '#8b8198' list: '#8b8198' diff --git a/themes/nu-themes/cupertino.nu b/themes/nu-themes/cupertino.nu index 8e0155c..b6a33eb 100644 --- a/themes/nu-themes/cupertino.nu +++ b/themes/nu-themes/cupertino.nu @@ -37,7 +37,7 @@ export def main [] { string: '#404040' nothing: '#404040' binary: '#404040' - cellpath: '#404040' + cell-path: '#404040' row_index: { fg: '#007400' attr: 'b' } record: '#404040' list: '#404040' diff --git a/themes/nu-themes/danqing.nu b/themes/nu-themes/danqing.nu index 5e20d4b..54fd617 100644 --- a/themes/nu-themes/danqing.nu +++ b/themes/nu-themes/danqing.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0f0ef' nothing: '#e0f0ef' binary: '#e0f0ef' - cellpath: '#e0f0ef' + cell-path: '#e0f0ef' row_index: { fg: '#8ab361' attr: 'b' } record: '#e0f0ef' list: '#e0f0ef' diff --git a/themes/nu-themes/darcula.nu b/themes/nu-themes/darcula.nu index bc935b9..2edfc8e 100644 --- a/themes/nu-themes/darcula.nu +++ b/themes/nu-themes/darcula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a9b7c6' nothing: '#a9b7c6' binary: '#a9b7c6' - cellpath: '#a9b7c6' + cell-path: '#a9b7c6' row_index: { fg: '#6a8759' attr: 'b' } record: '#a9b7c6' list: '#a9b7c6' diff --git a/themes/nu-themes/dark-pastel.nu b/themes/nu-themes/dark-pastel.nu index 771aa25..6c29ad3 100644 --- a/themes/nu-themes/dark-pastel.nu +++ b/themes/nu-themes/dark-pastel.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#55ff55' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/darkmoss.nu b/themes/nu-themes/darkmoss.nu index 50465a9..1b8121f 100644 --- a/themes/nu-themes/darkmoss.nu +++ b/themes/nu-themes/darkmoss.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c7c7a5' nothing: '#c7c7a5' binary: '#c7c7a5' - cellpath: '#c7c7a5' + cell-path: '#c7c7a5' row_index: { fg: '#499180' attr: 'b' } record: '#c7c7a5' list: '#c7c7a5' diff --git a/themes/nu-themes/darkside.nu b/themes/nu-themes/darkside.nu index 541cf60..3f3032f 100644 --- a/themes/nu-themes/darkside.nu +++ b/themes/nu-themes/darkside.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bababa' nothing: '#bababa' binary: '#bababa' - cellpath: '#bababa' + cell-path: '#bababa' row_index: { fg: '#68c256' attr: 'b' } record: '#bababa' list: '#bababa' diff --git a/themes/nu-themes/darktooth.nu b/themes/nu-themes/darktooth.nu index 205040a..0fb7125 100644 --- a/themes/nu-themes/darktooth.nu +++ b/themes/nu-themes/darktooth.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a89984' nothing: '#a89984' binary: '#a89984' - cellpath: '#a89984' + cell-path: '#a89984' row_index: { fg: '#95c085' attr: 'b' } record: '#a89984' list: '#a89984' diff --git a/themes/nu-themes/darkviolet.nu b/themes/nu-themes/darkviolet.nu index c967527..67382a7 100644 --- a/themes/nu-themes/darkviolet.nu +++ b/themes/nu-themes/darkviolet.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b08ae6' nothing: '#b08ae6' binary: '#b08ae6' - cellpath: '#b08ae6' + cell-path: '#b08ae6' row_index: { fg: '#4595e6' attr: 'b' } record: '#b08ae6' list: '#b08ae6' diff --git a/themes/nu-themes/decaf.nu b/themes/nu-themes/decaf.nu index f086ce5..5e9e102 100644 --- a/themes/nu-themes/decaf.nu +++ b/themes/nu-themes/decaf.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#beda78' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/default-dark.nu b/themes/nu-themes/default-dark.nu index 89797e0..bd92498 100644 --- a/themes/nu-themes/default-dark.nu +++ b/themes/nu-themes/default-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d8d8d8' nothing: '#d8d8d8' binary: '#d8d8d8' - cellpath: '#d8d8d8' + cell-path: '#d8d8d8' row_index: { fg: '#a1b56c' attr: 'b' } record: '#d8d8d8' list: '#d8d8d8' diff --git a/themes/nu-themes/default-light.nu b/themes/nu-themes/default-light.nu index 5504e2e..42ea802 100644 --- a/themes/nu-themes/default-light.nu +++ b/themes/nu-themes/default-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#383838' nothing: '#383838' binary: '#383838' - cellpath: '#383838' + cell-path: '#383838' row_index: { fg: '#a1b56c' attr: 'b' } record: '#383838' list: '#383838' diff --git a/themes/nu-themes/desert-night.nu b/themes/nu-themes/desert-night.nu index b6e3630..6b62067 100644 --- a/themes/nu-themes/desert-night.nu +++ b/themes/nu-themes/desert-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#87765d' nothing: '#87765d' binary: '#87765d' - cellpath: '#87765d' + cell-path: '#87765d' row_index: { fg: '#99b05f' attr: 'b' } record: '#87765d' list: '#87765d' diff --git a/themes/nu-themes/desert.nu b/themes/nu-themes/desert.nu index 97e666f..ee94415 100644 --- a/themes/nu-themes/desert.nu +++ b/themes/nu-themes/desert.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f5deb3' nothing: '#f5deb3' binary: '#f5deb3' - cellpath: '#f5deb3' + cell-path: '#f5deb3' row_index: { fg: '#98fb98' attr: 'b' } record: '#f5deb3' list: '#f5deb3' diff --git a/themes/nu-themes/dimmed-monokai.nu b/themes/nu-themes/dimmed-monokai.nu index e0716ad..829a44f 100644 --- a/themes/nu-themes/dimmed-monokai.nu +++ b/themes/nu-themes/dimmed-monokai.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b9bcba' nothing: '#b9bcba' binary: '#b9bcba' - cellpath: '#b9bcba' + cell-path: '#b9bcba' row_index: { fg: '#879a3b' attr: 'b' } record: '#b9bcba' list: '#b9bcba' diff --git a/themes/nu-themes/dirtysea.nu b/themes/nu-themes/dirtysea.nu index beedbf1..16f5b21 100644 --- a/themes/nu-themes/dirtysea.nu +++ b/themes/nu-themes/dirtysea.nu @@ -37,7 +37,7 @@ export def main [] { string: '#000000' nothing: '#000000' binary: '#000000' - cellpath: '#000000' + cell-path: '#000000' row_index: { fg: '#730073' attr: 'b' } record: '#000000' list: '#000000' diff --git a/themes/nu-themes/dot-gov.nu b/themes/nu-themes/dot-gov.nu index e070e8e..7f02522 100644 --- a/themes/nu-themes/dot-gov.nu +++ b/themes/nu-themes/dot-gov.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#3d9751' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/dracula.nu b/themes/nu-themes/dracula.nu index 0c02749..1dbadd1 100644 --- a/themes/nu-themes/dracula.nu +++ b/themes/nu-themes/dracula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e9e9f4' nothing: '#e9e9f4' binary: '#e9e9f4' - cellpath: '#e9e9f4' + cell-path: '#e9e9f4' row_index: { fg: '#ebff87' attr: 'b' } record: '#e9e9f4' list: '#e9e9f4' diff --git a/themes/nu-themes/dumbledore.nu b/themes/nu-themes/dumbledore.nu index 5e70ea6..5da4a7a 100644 --- a/themes/nu-themes/dumbledore.nu +++ b/themes/nu-themes/dumbledore.nu @@ -37,7 +37,7 @@ export def main [] { string: '#850000' nothing: '#850000' binary: '#850000' - cellpath: '#850000' + cell-path: '#850000' row_index: { fg: '#3e7c54' attr: 'b' } record: '#850000' list: '#850000' diff --git a/themes/nu-themes/duotone-dark.nu b/themes/nu-themes/duotone-dark.nu index 7784a80..fd8881f 100644 --- a/themes/nu-themes/duotone-dark.nu +++ b/themes/nu-themes/duotone-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b6a0ff' nothing: '#b6a0ff' binary: '#b6a0ff' - cellpath: '#b6a0ff' + cell-path: '#b6a0ff' row_index: { fg: '#2dcc72' attr: 'b' } record: '#b6a0ff' list: '#b6a0ff' diff --git a/themes/nu-themes/e-n-c-o-m.nu b/themes/nu-themes/e-n-c-o-m.nu index 8de80ae..811eba7 100644 --- a/themes/nu-themes/e-n-c-o-m.nu +++ b/themes/nu-themes/e-n-c-o-m.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#008b00' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/earthsong.nu b/themes/nu-themes/earthsong.nu index 60409f4..c479610 100644 --- a/themes/nu-themes/earthsong.nu +++ b/themes/nu-themes/earthsong.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e5c6aa' nothing: '#e5c6aa' binary: '#e5c6aa' - cellpath: '#e5c6aa' + cell-path: '#e5c6aa' row_index: { fg: '#85c54c' attr: 'b' } record: '#e5c6aa' list: '#e5c6aa' diff --git a/themes/nu-themes/edge-dark.nu b/themes/nu-themes/edge-dark.nu index fb4e309..5362ce7 100644 --- a/themes/nu-themes/edge-dark.nu +++ b/themes/nu-themes/edge-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b7bec9' nothing: '#b7bec9' binary: '#b7bec9' - cellpath: '#b7bec9' + cell-path: '#b7bec9' row_index: { fg: '#a1bf78' attr: 'b' } record: '#b7bec9' list: '#b7bec9' diff --git a/themes/nu-themes/edge-light.nu b/themes/nu-themes/edge-light.nu index 08d768d..b3cbd4c 100644 --- a/themes/nu-themes/edge-light.nu +++ b/themes/nu-themes/edge-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5e646f' nothing: '#5e646f' binary: '#5e646f' - cellpath: '#5e646f' + cell-path: '#5e646f' row_index: { fg: '#7c9f4b' attr: 'b' } record: '#5e646f' list: '#5e646f' diff --git a/themes/nu-themes/eighties.nu b/themes/nu-themes/eighties.nu index 784bf33..951a607 100644 --- a/themes/nu-themes/eighties.nu +++ b/themes/nu-themes/eighties.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d0c8' nothing: '#d3d0c8' binary: '#d3d0c8' - cellpath: '#d3d0c8' + cell-path: '#d3d0c8' row_index: { fg: '#99cc99' attr: 'b' } record: '#d3d0c8' list: '#d3d0c8' diff --git a/themes/nu-themes/elemental.nu b/themes/nu-themes/elemental.nu index dfe8f37..040b48e 100644 --- a/themes/nu-themes/elemental.nu +++ b/themes/nu-themes/elemental.nu @@ -37,7 +37,7 @@ export def main [] { string: '#807974' nothing: '#807974' binary: '#807974' - cellpath: '#807974' + cell-path: '#807974' row_index: { fg: '#479a43' attr: 'b' } record: '#807974' list: '#807974' diff --git a/themes/nu-themes/elementary.nu b/themes/nu-themes/elementary.nu index 937cda9..1442f99 100644 --- a/themes/nu-themes/elementary.nu +++ b/themes/nu-themes/elementary.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#6ab017' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/elic.nu b/themes/nu-themes/elic.nu index dd1632e..10b7d18 100644 --- a/themes/nu-themes/elic.nu +++ b/themes/nu-themes/elic.nu @@ -37,7 +37,7 @@ export def main [] { string: '#2aa7e7' nothing: '#2aa7e7' binary: '#2aa7e7' - cellpath: '#2aa7e7' + cell-path: '#2aa7e7' row_index: { fg: '#6ab017' attr: 'b' } record: '#2aa7e7' list: '#2aa7e7' diff --git a/themes/nu-themes/elio.nu b/themes/nu-themes/elio.nu index 98eebc5..4ca4a9f 100644 --- a/themes/nu-themes/elio.nu +++ b/themes/nu-themes/elio.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#6ab017' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/embark.nu b/themes/nu-themes/embark.nu index d0148ed..35525ba 100644 --- a/themes/nu-themes/embark.nu +++ b/themes/nu-themes/embark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbe3e7' nothing: '#cbe3e7' binary: '#cbe3e7' - cellpath: '#cbe3e7' + cell-path: '#cbe3e7' row_index: { fg: '#a1efd3' attr: 'b' } record: '#cbe3e7' list: '#cbe3e7' diff --git a/themes/nu-themes/embers.nu b/themes/nu-themes/embers.nu index a3deb7a..c1f895a 100644 --- a/themes/nu-themes/embers.nu +++ b/themes/nu-themes/embers.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a39a90' nothing: '#a39a90' binary: '#a39a90' - cellpath: '#a39a90' + cell-path: '#a39a90' row_index: { fg: '#57826d' attr: 'b' } record: '#a39a90' list: '#a39a90' diff --git a/themes/nu-themes/equilibrium-dark.nu b/themes/nu-themes/equilibrium-dark.nu index 0bc7d98..96e1542 100644 --- a/themes/nu-themes/equilibrium-dark.nu +++ b/themes/nu-themes/equilibrium-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#afaba2' nothing: '#afaba2' binary: '#afaba2' - cellpath: '#afaba2' + cell-path: '#afaba2' row_index: { fg: '#7f8b00' attr: 'b' } record: '#afaba2' list: '#afaba2' diff --git a/themes/nu-themes/equilibrium-gray-dark.nu b/themes/nu-themes/equilibrium-gray-dark.nu index dda54dc..6fff8ae 100644 --- a/themes/nu-themes/equilibrium-gray-dark.nu +++ b/themes/nu-themes/equilibrium-gray-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ababab' nothing: '#ababab' binary: '#ababab' - cellpath: '#ababab' + cell-path: '#ababab' row_index: { fg: '#7f8b00' attr: 'b' } record: '#ababab' list: '#ababab' diff --git a/themes/nu-themes/equilibrium-gray-light.nu b/themes/nu-themes/equilibrium-gray-light.nu index b3d57e9..d3f6098 100644 --- a/themes/nu-themes/equilibrium-gray-light.nu +++ b/themes/nu-themes/equilibrium-gray-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#474747' nothing: '#474747' binary: '#474747' - cellpath: '#474747' + cell-path: '#474747' row_index: { fg: '#637200' attr: 'b' } record: '#474747' list: '#474747' diff --git a/themes/nu-themes/equilibrium-light.nu b/themes/nu-themes/equilibrium-light.nu index 8767ee5..76f6ea7 100644 --- a/themes/nu-themes/equilibrium-light.nu +++ b/themes/nu-themes/equilibrium-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#43474e' nothing: '#43474e' binary: '#43474e' - cellpath: '#43474e' + cell-path: '#43474e' row_index: { fg: '#637200' attr: 'b' } record: '#43474e' list: '#43474e' diff --git a/themes/nu-themes/espresso-libre.nu b/themes/nu-themes/espresso-libre.nu index 4c5552f..8394657 100644 --- a/themes/nu-themes/espresso-libre.nu +++ b/themes/nu-themes/espresso-libre.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d7cf' nothing: '#d3d7cf' binary: '#d3d7cf' - cellpath: '#d3d7cf' + cell-path: '#d3d7cf' row_index: { fg: '#1a921c' attr: 'b' } record: '#d3d7cf' list: '#d3d7cf' diff --git a/themes/nu-themes/espresso.nu b/themes/nu-themes/espresso.nu index bab44e1..a305572 100644 --- a/themes/nu-themes/espresso.nu +++ b/themes/nu-themes/espresso.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#a5c261' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/eva-dim.nu b/themes/nu-themes/eva-dim.nu index dfe4a4b..99f4a5e 100644 --- a/themes/nu-themes/eva-dim.nu +++ b/themes/nu-themes/eva-dim.nu @@ -37,7 +37,7 @@ export def main [] { string: '#9fa2a6' nothing: '#9fa2a6' binary: '#9fa2a6' - cellpath: '#9fa2a6' + cell-path: '#9fa2a6' row_index: { fg: '#5de561' attr: 'b' } record: '#9fa2a6' list: '#9fa2a6' diff --git a/themes/nu-themes/eva.nu b/themes/nu-themes/eva.nu index 89f259c..9c97818 100644 --- a/themes/nu-themes/eva.nu +++ b/themes/nu-themes/eva.nu @@ -37,7 +37,7 @@ export def main [] { string: '#9fa2a6' nothing: '#9fa2a6' binary: '#9fa2a6' - cellpath: '#9fa2a6' + cell-path: '#9fa2a6' row_index: { fg: '#66ff66' attr: 'b' } record: '#9fa2a6' list: '#9fa2a6' diff --git a/themes/nu-themes/everforest-light.nu b/themes/nu-themes/everforest-light.nu index 88ebc49..ab70ba1 100644 --- a/themes/nu-themes/everforest-light.nu +++ b/themes/nu-themes/everforest-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dfddc8' nothing: '#dfddc8' binary: '#dfddc8' - cellpath: '#dfddc8' + cell-path: '#dfddc8' row_index: { fg: '#8da101' attr: 'b' } record: '#dfddc8' list: '#dfddc8' diff --git a/themes/nu-themes/everforest.nu b/themes/nu-themes/everforest.nu index 78d2b32..6b6cc5d 100644 --- a/themes/nu-themes/everforest.nu +++ b/themes/nu-themes/everforest.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3c6aa' nothing: '#d3c6aa' binary: '#d3c6aa' - cellpath: '#d3c6aa' + cell-path: '#d3c6aa' row_index: { fg: '#a7c080' attr: 'b' } record: '#d3c6aa' list: '#d3c6aa' diff --git a/themes/nu-themes/falcon.nu b/themes/nu-themes/falcon.nu index 7c41f1c..e8d532e 100644 --- a/themes/nu-themes/falcon.nu +++ b/themes/nu-themes/falcon.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b4b4b9' nothing: '#b4b4b9' binary: '#b4b4b9' - cellpath: '#b4b4b9' + cell-path: '#b4b4b9' row_index: { fg: '#718e3f' attr: 'b' } record: '#b4b4b9' list: '#b4b4b9' diff --git a/themes/nu-themes/farin.nu b/themes/nu-themes/farin.nu index 9cfe4fb..91c2f68 100644 --- a/themes/nu-themes/farin.nu +++ b/themes/nu-themes/farin.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#11ff55' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/ffive.nu b/themes/nu-themes/ffive.nu index 9a325d3..a369ff0 100644 --- a/themes/nu-themes/ffive.nu +++ b/themes/nu-themes/ffive.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dadadb' nothing: '#dadadb' binary: '#dadadb' - cellpath: '#dadadb' + cell-path: '#dadadb' row_index: { fg: '#32bf46' attr: 'b' } record: '#dadadb' list: '#dadadb' diff --git a/themes/nu-themes/fideloper.nu b/themes/nu-themes/fideloper.nu index f53cfaf..7841c98 100644 --- a/themes/nu-themes/fideloper.nu +++ b/themes/nu-themes/fideloper.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e9e2cd' nothing: '#e9e2cd' binary: '#e9e2cd' - cellpath: '#e9e2cd' + cell-path: '#e9e2cd' row_index: { fg: '#edb7ab' attr: 'b' } record: '#e9e2cd' list: '#e9e2cd' diff --git a/themes/nu-themes/fishtank.nu b/themes/nu-themes/fishtank.nu index dd3a31a..8c6d636 100644 --- a/themes/nu-themes/fishtank.nu +++ b/themes/nu-themes/fishtank.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ecf0fc' nothing: '#ecf0fc' binary: '#ecf0fc' - cellpath: '#ecf0fc' + cell-path: '#ecf0fc' row_index: { fg: '#acf157' attr: 'b' } record: '#ecf0fc' list: '#ecf0fc' diff --git a/themes/nu-themes/flat.nu b/themes/nu-themes/flat.nu index cd69b9d..c6cf9be 100644 --- a/themes/nu-themes/flat.nu +++ b/themes/nu-themes/flat.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0e0e0' nothing: '#e0e0e0' binary: '#e0e0e0' - cellpath: '#e0e0e0' + cell-path: '#e0e0e0' row_index: { fg: '#2ecc71' attr: 'b' } record: '#e0e0e0' list: '#e0e0e0' diff --git a/themes/nu-themes/flatland.nu b/themes/nu-themes/flatland.nu index 2723fb1..30351b9 100644 --- a/themes/nu-themes/flatland.nu +++ b/themes/nu-themes/flatland.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#9fd364' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/floraverse.nu b/themes/nu-themes/floraverse.nu index ee601bd..7a9f950 100644 --- a/themes/nu-themes/floraverse.nu +++ b/themes/nu-themes/floraverse.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f3e0b8' nothing: '#f3e0b8' binary: '#f3e0b8' - cellpath: '#f3e0b8' + cell-path: '#f3e0b8' row_index: { fg: '#5d731a' attr: 'b' } record: '#f3e0b8' list: '#f3e0b8' diff --git a/themes/nu-themes/forest-night.nu b/themes/nu-themes/forest-night.nu index 98c14c9..9d74993 100644 --- a/themes/nu-themes/forest-night.nu +++ b/themes/nu-themes/forest-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffebc3' nothing: '#ffebc3' binary: '#ffebc3' - cellpath: '#ffebc3' + cell-path: '#ffebc3' row_index: { fg: '#a9dd9d' attr: 'b' } record: '#ffebc3' list: '#ffebc3' diff --git a/themes/nu-themes/foxnightly.nu b/themes/nu-themes/foxnightly.nu index e60e5c0..f6ee0e1 100644 --- a/themes/nu-themes/foxnightly.nu +++ b/themes/nu-themes/foxnightly.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#ff7de9' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/framer.nu b/themes/nu-themes/framer.nu index 51914b2..a7db13e 100644 --- a/themes/nu-themes/framer.nu +++ b/themes/nu-themes/framer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#32ccdc' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/freya.nu b/themes/nu-themes/freya.nu index 804996f..e84db6f 100644 --- a/themes/nu-themes/freya.nu +++ b/themes/nu-themes/freya.nu @@ -37,7 +37,7 @@ export def main [] { string: '#94a3a5' nothing: '#94a3a5' binary: '#94a3a5' - cellpath: '#94a3a5' + cell-path: '#94a3a5' row_index: { fg: '#859900' attr: 'b' } record: '#94a3a5' list: '#94a3a5' diff --git a/themes/nu-themes/frontend-delight.nu b/themes/nu-themes/frontend-delight.nu index 8e8709b..f155d55 100644 --- a/themes/nu-themes/frontend-delight.nu +++ b/themes/nu-themes/frontend-delight.nu @@ -37,7 +37,7 @@ export def main [] { string: '#adadad' nothing: '#adadad' binary: '#adadad' - cellpath: '#adadad' + cell-path: '#adadad' row_index: { fg: '#565747' attr: 'b' } record: '#adadad' list: '#adadad' diff --git a/themes/nu-themes/frontend-fun-forrest.nu b/themes/nu-themes/frontend-fun-forrest.nu index 9846637..2e6d4b5 100644 --- a/themes/nu-themes/frontend-fun-forrest.nu +++ b/themes/nu-themes/frontend-fun-forrest.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ddc265' nothing: '#ddc265' binary: '#ddc265' - cellpath: '#ddc265' + cell-path: '#ddc265' row_index: { fg: '#919c00' attr: 'b' } record: '#ddc265' list: '#ddc265' diff --git a/themes/nu-themes/frontend-galaxy.nu b/themes/nu-themes/frontend-galaxy.nu index c07cc35..512721f 100644 --- a/themes/nu-themes/frontend-galaxy.nu +++ b/themes/nu-themes/frontend-galaxy.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#21b089' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/fruit-soda.nu b/themes/nu-themes/fruit-soda.nu index 465c8dc..cdd78dc 100644 --- a/themes/nu-themes/fruit-soda.nu +++ b/themes/nu-themes/fruit-soda.nu @@ -37,7 +37,7 @@ export def main [] { string: '#515151' nothing: '#515151' binary: '#515151' - cellpath: '#515151' + cell-path: '#515151' row_index: { fg: '#47f74c' attr: 'b' } record: '#515151' list: '#515151' diff --git a/themes/nu-themes/gigavolt.nu b/themes/nu-themes/gigavolt.nu index 612bdbf..43aa9d6 100644 --- a/themes/nu-themes/gigavolt.nu +++ b/themes/nu-themes/gigavolt.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e9e7e1' nothing: '#e9e7e1' binary: '#e9e7e1' - cellpath: '#e9e7e1' + cell-path: '#e9e7e1' row_index: { fg: '#f2e6a9' attr: 'b' } record: '#e9e7e1' list: '#e9e7e1' diff --git a/themes/nu-themes/github-dark-colorblind.nu b/themes/nu-themes/github-dark-colorblind.nu index 7af2e9c..8dd2c6e 100644 --- a/themes/nu-themes/github-dark-colorblind.nu +++ b/themes/nu-themes/github-dark-colorblind.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b1bac4' nothing: '#b1bac4' binary: '#b1bac4' - cellpath: '#b1bac4' + cell-path: '#b1bac4' row_index: { fg: '#3fb950' attr: 'b' } record: '#b1bac4' list: '#b1bac4' diff --git a/themes/nu-themes/github-dark-default.nu b/themes/nu-themes/github-dark-default.nu index 7af2e9c..8dd2c6e 100644 --- a/themes/nu-themes/github-dark-default.nu +++ b/themes/nu-themes/github-dark-default.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b1bac4' nothing: '#b1bac4' binary: '#b1bac4' - cellpath: '#b1bac4' + cell-path: '#b1bac4' row_index: { fg: '#3fb950' attr: 'b' } record: '#b1bac4' list: '#b1bac4' diff --git a/themes/nu-themes/github-dark.nu b/themes/nu-themes/github-dark.nu index 9982778..cfd373f 100644 --- a/themes/nu-themes/github-dark.nu +++ b/themes/nu-themes/github-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d1d5da' nothing: '#d1d5da' binary: '#d1d5da' - cellpath: '#d1d5da' + cell-path: '#d1d5da' row_index: { fg: '#34d058' attr: 'b' } record: '#d1d5da' list: '#d1d5da' diff --git a/themes/nu-themes/github-dimmed.nu b/themes/nu-themes/github-dimmed.nu index 56cd57b..a6866fe 100644 --- a/themes/nu-themes/github-dimmed.nu +++ b/themes/nu-themes/github-dimmed.nu @@ -37,7 +37,7 @@ export def main [] { string: '#909dab' nothing: '#909dab' binary: '#909dab' - cellpath: '#909dab' + cell-path: '#909dab' row_index: { fg: '#57ab5a' attr: 'b' } record: '#909dab' list: '#909dab' diff --git a/themes/nu-themes/github-light-colorblind.nu b/themes/nu-themes/github-light-colorblind.nu index 2c41784..07a319c 100644 --- a/themes/nu-themes/github-light-colorblind.nu +++ b/themes/nu-themes/github-light-colorblind.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6e7781' nothing: '#6e7781' binary: '#6e7781' - cellpath: '#6e7781' + cell-path: '#6e7781' row_index: { fg: '#116329' attr: 'b' } record: '#6e7781' list: '#6e7781' diff --git a/themes/nu-themes/github-light-default.nu b/themes/nu-themes/github-light-default.nu index b4a8bba..13752c7 100644 --- a/themes/nu-themes/github-light-default.nu +++ b/themes/nu-themes/github-light-default.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6e7781' nothing: '#6e7781' binary: '#6e7781' - cellpath: '#6e7781' + cell-path: '#6e7781' row_index: { fg: '#116329' attr: 'b' } record: '#6e7781' list: '#6e7781' diff --git a/themes/nu-themes/github-light.nu b/themes/nu-themes/github-light.nu index daf30bf..ee23927 100644 --- a/themes/nu-themes/github-light.nu +++ b/themes/nu-themes/github-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6a737d' nothing: '#6a737d' binary: '#6a737d' - cellpath: '#6a737d' + cell-path: '#6a737d' row_index: { fg: '#28a745' attr: 'b' } record: '#6a737d' list: '#6a737d' diff --git a/themes/nu-themes/github.nu b/themes/nu-themes/github.nu index 51383e7..8614286 100644 --- a/themes/nu-themes/github.nu +++ b/themes/nu-themes/github.nu @@ -37,7 +37,7 @@ export def main [] { string: '#333333' nothing: '#333333' binary: '#333333' - cellpath: '#333333' + cell-path: '#333333' row_index: { fg: '#183691' attr: 'b' } record: '#333333' list: '#333333' diff --git a/themes/nu-themes/glacier.nu b/themes/nu-themes/glacier.nu index 2d285da..5750fd8 100644 --- a/themes/nu-themes/glacier.nu +++ b/themes/nu-themes/glacier.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#35a770' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/goa-base.nu b/themes/nu-themes/goa-base.nu index 4fee970..417e3e4 100644 --- a/themes/nu-themes/goa-base.nu +++ b/themes/nu-themes/goa-base.nu @@ -37,7 +37,7 @@ export def main [] { string: '#000000' nothing: '#000000' binary: '#000000' - cellpath: '#000000' + cell-path: '#000000' row_index: { fg: '#249000' attr: 'b' } record: '#000000' list: '#000000' diff --git a/themes/nu-themes/gooey.nu b/themes/nu-themes/gooey.nu index 2134847..5be2caf 100644 --- a/themes/nu-themes/gooey.nu +++ b/themes/nu-themes/gooey.nu @@ -37,7 +37,7 @@ export def main [] { string: '#858893' nothing: '#858893' binary: '#858893' - cellpath: '#858893' + cell-path: '#858893' row_index: { fg: '#72ccae' attr: 'b' } record: '#858893' list: '#858893' diff --git a/themes/nu-themes/google-dark.nu b/themes/nu-themes/google-dark.nu index f3cf91f..17d9f6a 100644 --- a/themes/nu-themes/google-dark.nu +++ b/themes/nu-themes/google-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5c8c6' nothing: '#c5c8c6' binary: '#c5c8c6' - cellpath: '#c5c8c6' + cell-path: '#c5c8c6' row_index: { fg: '#198844' attr: 'b' } record: '#c5c8c6' list: '#c5c8c6' diff --git a/themes/nu-themes/google-light.nu b/themes/nu-themes/google-light.nu index eb99dd0..e4c7d58 100644 --- a/themes/nu-themes/google-light.nu +++ b/themes/nu-themes/google-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#373b41' nothing: '#373b41' binary: '#373b41' - cellpath: '#373b41' + cell-path: '#373b41' row_index: { fg: '#198844' attr: 'b' } record: '#373b41' list: '#373b41' diff --git a/themes/nu-themes/grape.nu b/themes/nu-themes/grape.nu index d7d3f0c..ced05e1 100644 --- a/themes/nu-themes/grape.nu +++ b/themes/nu-themes/grape.nu @@ -37,7 +37,7 @@ export def main [] { string: '#9e9ea0' nothing: '#9e9ea0' binary: '#9e9ea0' - cellpath: '#9e9ea0' + cell-path: '#9e9ea0' row_index: { fg: '#1fa91b' attr: 'b' } record: '#9e9ea0' list: '#9e9ea0' diff --git a/themes/nu-themes/grass.nu b/themes/nu-themes/grass.nu index 18a1b03..c541d28 100644 --- a/themes/nu-themes/grass.nu +++ b/themes/nu-themes/grass.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#00bb00' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/grayscale-dark.nu b/themes/nu-themes/grayscale-dark.nu index 2507798..38b8639 100644 --- a/themes/nu-themes/grayscale-dark.nu +++ b/themes/nu-themes/grayscale-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b9b9b9' nothing: '#b9b9b9' binary: '#b9b9b9' - cellpath: '#b9b9b9' + cell-path: '#b9b9b9' row_index: { fg: '#8e8e8e' attr: 'b' } record: '#b9b9b9' list: '#b9b9b9' diff --git a/themes/nu-themes/grayscale-light.nu b/themes/nu-themes/grayscale-light.nu index 9e23e0d..8ed5f8c 100644 --- a/themes/nu-themes/grayscale-light.nu +++ b/themes/nu-themes/grayscale-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#464646' nothing: '#464646' binary: '#464646' - cellpath: '#464646' + cell-path: '#464646' row_index: { fg: '#8e8e8e' attr: 'b' } record: '#464646' list: '#464646' diff --git a/themes/nu-themes/green-screen.nu b/themes/nu-themes/green-screen.nu index c03d7bf..a01bf3a 100644 --- a/themes/nu-themes/green-screen.nu +++ b/themes/nu-themes/green-screen.nu @@ -37,7 +37,7 @@ export def main [] { string: '#00bb00' nothing: '#00bb00' binary: '#00bb00' - cellpath: '#00bb00' + cell-path: '#00bb00' row_index: { fg: '#00bb00' attr: 'b' } record: '#00bb00' list: '#00bb00' diff --git a/themes/nu-themes/greenscreen.nu b/themes/nu-themes/greenscreen.nu index c03d7bf..a01bf3a 100644 --- a/themes/nu-themes/greenscreen.nu +++ b/themes/nu-themes/greenscreen.nu @@ -37,7 +37,7 @@ export def main [] { string: '#00bb00' nothing: '#00bb00' binary: '#00bb00' - cellpath: '#00bb00' + cell-path: '#00bb00' row_index: { fg: '#00bb00' attr: 'b' } record: '#00bb00' list: '#00bb00' diff --git a/themes/nu-themes/gruvbit.nu b/themes/nu-themes/gruvbit.nu index 6bcdd4e..99816c0 100644 --- a/themes/nu-themes/gruvbit.nu +++ b/themes/nu-themes/gruvbit.nu @@ -37,7 +37,7 @@ export def main [] { string: '#504945' nothing: '#504945' binary: '#504945' - cellpath: '#504945' + cell-path: '#504945' row_index: { fg: '#8ec07c' attr: 'b' } record: '#504945' list: '#504945' diff --git a/themes/nu-themes/gruvbox-dark-hard.nu b/themes/nu-themes/gruvbox-dark-hard.nu index 27ed565..32c3025 100644 --- a/themes/nu-themes/gruvbox-dark-hard.nu +++ b/themes/nu-themes/gruvbox-dark-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d5c4a1' nothing: '#d5c4a1' binary: '#d5c4a1' - cellpath: '#d5c4a1' + cell-path: '#d5c4a1' row_index: { fg: '#b8bb26' attr: 'b' } record: '#d5c4a1' list: '#d5c4a1' diff --git a/themes/nu-themes/gruvbox-dark-medium.nu b/themes/nu-themes/gruvbox-dark-medium.nu index 9f20b9d..9a8156c 100644 --- a/themes/nu-themes/gruvbox-dark-medium.nu +++ b/themes/nu-themes/gruvbox-dark-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d5c4a1' nothing: '#d5c4a1' binary: '#d5c4a1' - cellpath: '#d5c4a1' + cell-path: '#d5c4a1' row_index: { fg: '#b8bb26' attr: 'b' } record: '#d5c4a1' list: '#d5c4a1' diff --git a/themes/nu-themes/gruvbox-dark-pale.nu b/themes/nu-themes/gruvbox-dark-pale.nu index 2f52579..e8efedc 100644 --- a/themes/nu-themes/gruvbox-dark-pale.nu +++ b/themes/nu-themes/gruvbox-dark-pale.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dab997' nothing: '#dab997' binary: '#dab997' - cellpath: '#dab997' + cell-path: '#dab997' row_index: { fg: '#afaf00' attr: 'b' } record: '#dab997' list: '#dab997' diff --git a/themes/nu-themes/gruvbox-dark-soft.nu b/themes/nu-themes/gruvbox-dark-soft.nu index da8d8d8..1a67e67 100644 --- a/themes/nu-themes/gruvbox-dark-soft.nu +++ b/themes/nu-themes/gruvbox-dark-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d5c4a1' nothing: '#d5c4a1' binary: '#d5c4a1' - cellpath: '#d5c4a1' + cell-path: '#d5c4a1' row_index: { fg: '#b8bb26' attr: 'b' } record: '#d5c4a1' list: '#d5c4a1' diff --git a/themes/nu-themes/gruvbox-dark.nu b/themes/nu-themes/gruvbox-dark.nu index c5dd4ff..35c4cce 100644 --- a/themes/nu-themes/gruvbox-dark.nu +++ b/themes/nu-themes/gruvbox-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a89984' nothing: '#a89984' binary: '#a89984' - cellpath: '#a89984' + cell-path: '#a89984' row_index: { fg: '#98971a' attr: 'b' } record: '#a89984' list: '#a89984' diff --git a/themes/nu-themes/gruvbox-light-hard.nu b/themes/nu-themes/gruvbox-light-hard.nu index a21a356..65d4806 100644 --- a/themes/nu-themes/gruvbox-light-hard.nu +++ b/themes/nu-themes/gruvbox-light-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#504945' nothing: '#504945' binary: '#504945' - cellpath: '#504945' + cell-path: '#504945' row_index: { fg: '#79740e' attr: 'b' } record: '#504945' list: '#504945' diff --git a/themes/nu-themes/gruvbox-light-medium.nu b/themes/nu-themes/gruvbox-light-medium.nu index fcab405..97fb46e 100644 --- a/themes/nu-themes/gruvbox-light-medium.nu +++ b/themes/nu-themes/gruvbox-light-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#504945' nothing: '#504945' binary: '#504945' - cellpath: '#504945' + cell-path: '#504945' row_index: { fg: '#79740e' attr: 'b' } record: '#504945' list: '#504945' diff --git a/themes/nu-themes/gruvbox-light-soft.nu b/themes/nu-themes/gruvbox-light-soft.nu index cb8b747..5cc2b5e 100644 --- a/themes/nu-themes/gruvbox-light-soft.nu +++ b/themes/nu-themes/gruvbox-light-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#504945' nothing: '#504945' binary: '#504945' - cellpath: '#504945' + cell-path: '#504945' row_index: { fg: '#79740e' attr: 'b' } record: '#504945' list: '#504945' diff --git a/themes/nu-themes/gruvbox-material-dark-hard.nu b/themes/nu-themes/gruvbox-material-dark-hard.nu index 4e49b85..2cc905a 100644 --- a/themes/nu-themes/gruvbox-material-dark-hard.nu +++ b/themes/nu-themes/gruvbox-material-dark-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d4be98' nothing: '#d4be98' binary: '#d4be98' - cellpath: '#d4be98' + cell-path: '#d4be98' row_index: { fg: '#a9b665' attr: 'b' } record: '#d4be98' list: '#d4be98' diff --git a/themes/nu-themes/gruvbox-material-dark-medium.nu b/themes/nu-themes/gruvbox-material-dark-medium.nu index 300aa45..20f5207 100644 --- a/themes/nu-themes/gruvbox-material-dark-medium.nu +++ b/themes/nu-themes/gruvbox-material-dark-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d4be98' nothing: '#d4be98' binary: '#d4be98' - cellpath: '#d4be98' + cell-path: '#d4be98' row_index: { fg: '#a9b665' attr: 'b' } record: '#d4be98' list: '#d4be98' diff --git a/themes/nu-themes/gruvbox-material-dark-soft.nu b/themes/nu-themes/gruvbox-material-dark-soft.nu index ed28733..8940c3a 100644 --- a/themes/nu-themes/gruvbox-material-dark-soft.nu +++ b/themes/nu-themes/gruvbox-material-dark-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d4be98' nothing: '#d4be98' binary: '#d4be98' - cellpath: '#d4be98' + cell-path: '#d4be98' row_index: { fg: '#a9b665' attr: 'b' } record: '#d4be98' list: '#d4be98' diff --git a/themes/nu-themes/gruvbox-material-light-hard.nu b/themes/nu-themes/gruvbox-material-light-hard.nu index e2b76ac..a27bb20 100644 --- a/themes/nu-themes/gruvbox-material-light-hard.nu +++ b/themes/nu-themes/gruvbox-material-light-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#654735' nothing: '#654735' binary: '#654735' - cellpath: '#654735' + cell-path: '#654735' row_index: { fg: '#6c782e' attr: 'b' } record: '#654735' list: '#654735' diff --git a/themes/nu-themes/gruvbox-material-light-medium.nu b/themes/nu-themes/gruvbox-material-light-medium.nu index 05ae541..c1a05a8 100644 --- a/themes/nu-themes/gruvbox-material-light-medium.nu +++ b/themes/nu-themes/gruvbox-material-light-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#654735' nothing: '#654735' binary: '#654735' - cellpath: '#654735' + cell-path: '#654735' row_index: { fg: '#6c782e' attr: 'b' } record: '#654735' list: '#654735' diff --git a/themes/nu-themes/gruvbox-material-light-soft.nu b/themes/nu-themes/gruvbox-material-light-soft.nu index 11e4f1f..0f4963f 100644 --- a/themes/nu-themes/gruvbox-material-light-soft.nu +++ b/themes/nu-themes/gruvbox-material-light-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#654735' nothing: '#654735' binary: '#654735' - cellpath: '#654735' + cell-path: '#654735' row_index: { fg: '#6c782e' attr: 'b' } record: '#654735' list: '#654735' diff --git a/themes/nu-themes/gruvbox-mix-dark-hard.nu b/themes/nu-themes/gruvbox-mix-dark-hard.nu index a307133..303e603 100644 --- a/themes/nu-themes/gruvbox-mix-dark-hard.nu +++ b/themes/nu-themes/gruvbox-mix-dark-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2cca9' nothing: '#e2cca9' binary: '#e2cca9' - cellpath: '#e2cca9' + cell-path: '#e2cca9' row_index: { fg: '#b0b846' attr: 'b' } record: '#e2cca9' list: '#e2cca9' diff --git a/themes/nu-themes/gruvbox-mix-dark-medium.nu b/themes/nu-themes/gruvbox-mix-dark-medium.nu index 6dc0614..3b7a62a 100644 --- a/themes/nu-themes/gruvbox-mix-dark-medium.nu +++ b/themes/nu-themes/gruvbox-mix-dark-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2cca9' nothing: '#e2cca9' binary: '#e2cca9' - cellpath: '#e2cca9' + cell-path: '#e2cca9' row_index: { fg: '#b0b846' attr: 'b' } record: '#e2cca9' list: '#e2cca9' diff --git a/themes/nu-themes/gruvbox-mix-dark-soft.nu b/themes/nu-themes/gruvbox-mix-dark-soft.nu index 165c669..962e4de 100644 --- a/themes/nu-themes/gruvbox-mix-dark-soft.nu +++ b/themes/nu-themes/gruvbox-mix-dark-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2cca9' nothing: '#e2cca9' binary: '#e2cca9' - cellpath: '#e2cca9' + cell-path: '#e2cca9' row_index: { fg: '#b0b846' attr: 'b' } record: '#e2cca9' list: '#e2cca9' diff --git a/themes/nu-themes/gruvbox-mix-light-hard.nu b/themes/nu-themes/gruvbox-mix-light-hard.nu index 9e8b96f..aaf3ae6 100644 --- a/themes/nu-themes/gruvbox-mix-light-hard.nu +++ b/themes/nu-themes/gruvbox-mix-light-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#514036' nothing: '#514036' binary: '#514036' - cellpath: '#514036' + cell-path: '#514036' row_index: { fg: '#72761e' attr: 'b' } record: '#514036' list: '#514036' diff --git a/themes/nu-themes/gruvbox-mix-light-medium.nu b/themes/nu-themes/gruvbox-mix-light-medium.nu index c90c430..2195f64 100644 --- a/themes/nu-themes/gruvbox-mix-light-medium.nu +++ b/themes/nu-themes/gruvbox-mix-light-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#514036' nothing: '#514036' binary: '#514036' - cellpath: '#514036' + cell-path: '#514036' row_index: { fg: '#72761e' attr: 'b' } record: '#514036' list: '#514036' diff --git a/themes/nu-themes/gruvbox-mix-light-soft.nu b/themes/nu-themes/gruvbox-mix-light-soft.nu index 9e2839e..c14f58e 100644 --- a/themes/nu-themes/gruvbox-mix-light-soft.nu +++ b/themes/nu-themes/gruvbox-mix-light-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#514036' nothing: '#514036' binary: '#514036' - cellpath: '#514036' + cell-path: '#514036' row_index: { fg: '#72761e' attr: 'b' } record: '#514036' list: '#514036' diff --git a/themes/nu-themes/gruvbox-original-dark-hard.nu b/themes/nu-themes/gruvbox-original-dark-hard.nu index f30b595..4acd450 100644 --- a/themes/nu-themes/gruvbox-original-dark-hard.nu +++ b/themes/nu-themes/gruvbox-original-dark-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ebdbb2' nothing: '#ebdbb2' binary: '#ebdbb2' - cellpath: '#ebdbb2' + cell-path: '#ebdbb2' row_index: { fg: '#b8bb26' attr: 'b' } record: '#ebdbb2' list: '#ebdbb2' diff --git a/themes/nu-themes/gruvbox-original-dark-medium.nu b/themes/nu-themes/gruvbox-original-dark-medium.nu index be6c8c7..cb2090e 100644 --- a/themes/nu-themes/gruvbox-original-dark-medium.nu +++ b/themes/nu-themes/gruvbox-original-dark-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ebdbb2' nothing: '#ebdbb2' binary: '#ebdbb2' - cellpath: '#ebdbb2' + cell-path: '#ebdbb2' row_index: { fg: '#b8bb26' attr: 'b' } record: '#ebdbb2' list: '#ebdbb2' diff --git a/themes/nu-themes/gruvbox-original-dark-soft.nu b/themes/nu-themes/gruvbox-original-dark-soft.nu index b8227c2..b529534 100644 --- a/themes/nu-themes/gruvbox-original-dark-soft.nu +++ b/themes/nu-themes/gruvbox-original-dark-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ebdbb2' nothing: '#ebdbb2' binary: '#ebdbb2' - cellpath: '#ebdbb2' + cell-path: '#ebdbb2' row_index: { fg: '#b8bb26' attr: 'b' } record: '#ebdbb2' list: '#ebdbb2' diff --git a/themes/nu-themes/gruvbox-original-light-hard.nu b/themes/nu-themes/gruvbox-original-light-hard.nu index 462284c..1aa7235 100644 --- a/themes/nu-themes/gruvbox-original-light-hard.nu +++ b/themes/nu-themes/gruvbox-original-light-hard.nu @@ -37,7 +37,7 @@ export def main [] { string: '#3c3836' nothing: '#3c3836' binary: '#3c3836' - cellpath: '#3c3836' + cell-path: '#3c3836' row_index: { fg: '#79740e' attr: 'b' } record: '#3c3836' list: '#3c3836' diff --git a/themes/nu-themes/gruvbox-original-light-medium.nu b/themes/nu-themes/gruvbox-original-light-medium.nu index 510ec9d..b6e04c7 100644 --- a/themes/nu-themes/gruvbox-original-light-medium.nu +++ b/themes/nu-themes/gruvbox-original-light-medium.nu @@ -37,7 +37,7 @@ export def main [] { string: '#3c3836' nothing: '#3c3836' binary: '#3c3836' - cellpath: '#3c3836' + cell-path: '#3c3836' row_index: { fg: '#79740e' attr: 'b' } record: '#3c3836' list: '#3c3836' diff --git a/themes/nu-themes/gruvbox-original-light-soft.nu b/themes/nu-themes/gruvbox-original-light-soft.nu index 8f01647..c0ef091 100644 --- a/themes/nu-themes/gruvbox-original-light-soft.nu +++ b/themes/nu-themes/gruvbox-original-light-soft.nu @@ -37,7 +37,7 @@ export def main [] { string: '#3c3836' nothing: '#3c3836' binary: '#3c3836' - cellpath: '#3c3836' + cell-path: '#3c3836' row_index: { fg: '#79740e' attr: 'b' } record: '#3c3836' list: '#3c3836' diff --git a/themes/nu-themes/gruvbox.nu b/themes/nu-themes/gruvbox.nu index 2973076..394f651 100644 --- a/themes/nu-themes/gruvbox.nu +++ b/themes/nu-themes/gruvbox.nu @@ -37,7 +37,7 @@ export def main [] { string: '#7c6f64' nothing: '#7c6f64' binary: '#7c6f64' - cellpath: '#7c6f64' + cell-path: '#7c6f64' row_index: { fg: '#98971a' attr: 'b' } record: '#7c6f64' list: '#7c6f64' diff --git a/themes/nu-themes/hardcore.nu b/themes/nu-themes/hardcore.nu index 827deff..fb7208a 100644 --- a/themes/nu-themes/hardcore.nu +++ b/themes/nu-themes/hardcore.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cdcdcd' nothing: '#cdcdcd' binary: '#cdcdcd' - cellpath: '#cdcdcd' + cell-path: '#cdcdcd' row_index: { fg: '#a6e22e' attr: 'b' } record: '#cdcdcd' list: '#cdcdcd' diff --git a/themes/nu-themes/harmonic-dark.nu b/themes/nu-themes/harmonic-dark.nu index a1a131e..7d6f439 100644 --- a/themes/nu-themes/harmonic-dark.nu +++ b/themes/nu-themes/harmonic-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbd6e2' nothing: '#cbd6e2' binary: '#cbd6e2' - cellpath: '#cbd6e2' + cell-path: '#cbd6e2' row_index: { fg: '#56bf8b' attr: 'b' } record: '#cbd6e2' list: '#cbd6e2' diff --git a/themes/nu-themes/harmonic-light.nu b/themes/nu-themes/harmonic-light.nu index d11a80d..fcbaa37 100644 --- a/themes/nu-themes/harmonic-light.nu +++ b/themes/nu-themes/harmonic-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#405c79' nothing: '#405c79' binary: '#405c79' - cellpath: '#405c79' + cell-path: '#405c79' row_index: { fg: '#56bf8b' attr: 'b' } record: '#405c79' list: '#405c79' diff --git a/themes/nu-themes/harmonic16-dark.nu b/themes/nu-themes/harmonic16-dark.nu index a1a131e..7d6f439 100644 --- a/themes/nu-themes/harmonic16-dark.nu +++ b/themes/nu-themes/harmonic16-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbd6e2' nothing: '#cbd6e2' binary: '#cbd6e2' - cellpath: '#cbd6e2' + cell-path: '#cbd6e2' row_index: { fg: '#56bf8b' attr: 'b' } record: '#cbd6e2' list: '#cbd6e2' diff --git a/themes/nu-themes/harmonic16-light.nu b/themes/nu-themes/harmonic16-light.nu index d11a80d..fcbaa37 100644 --- a/themes/nu-themes/harmonic16-light.nu +++ b/themes/nu-themes/harmonic16-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#405c79' nothing: '#405c79' binary: '#405c79' - cellpath: '#405c79' + cell-path: '#405c79' row_index: { fg: '#56bf8b' attr: 'b' } record: '#405c79' list: '#405c79' diff --git a/themes/nu-themes/harper.nu b/themes/nu-themes/harper.nu index 3b7fe21..7533e14 100644 --- a/themes/nu-themes/harper.nu +++ b/themes/nu-themes/harper.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a8a49d' nothing: '#a8a49d' binary: '#a8a49d' - cellpath: '#a8a49d' + cell-path: '#a8a49d' row_index: { fg: '#7fb5e1' attr: 'b' } record: '#a8a49d' list: '#a8a49d' diff --git a/themes/nu-themes/heetch-light.nu b/themes/nu-themes/heetch-light.nu index 63263e0..41200ec 100644 --- a/themes/nu-themes/heetch-light.nu +++ b/themes/nu-themes/heetch-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5a496e' nothing: '#5a496e' binary: '#5a496e' - cellpath: '#5a496e' + cell-path: '#5a496e' row_index: { fg: '#f80059' attr: 'b' } record: '#5a496e' list: '#5a496e' diff --git a/themes/nu-themes/heetch.nu b/themes/nu-themes/heetch.nu index b88f753..3acbd9d 100644 --- a/themes/nu-themes/heetch.nu +++ b/themes/nu-themes/heetch.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bdb6c5' nothing: '#bdb6c5' binary: '#bdb6c5' - cellpath: '#bdb6c5' + cell-path: '#bdb6c5' row_index: { fg: '#c33678' attr: 'b' } record: '#bdb6c5' list: '#bdb6c5' diff --git a/themes/nu-themes/helios.nu b/themes/nu-themes/helios.nu index fbba252..858f293 100644 --- a/themes/nu-themes/helios.nu +++ b/themes/nu-themes/helios.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d5d5d5' nothing: '#d5d5d5' binary: '#d5d5d5' - cellpath: '#d5d5d5' + cell-path: '#d5d5d5' row_index: { fg: '#88b92d' attr: 'b' } record: '#d5d5d5' list: '#d5d5d5' diff --git a/themes/nu-themes/hemisu-dark.nu b/themes/nu-themes/hemisu-dark.nu index 4228036..2d16fac 100644 --- a/themes/nu-themes/hemisu-dark.nu +++ b/themes/nu-themes/hemisu-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ededed' nothing: '#ededed' binary: '#ededed' - cellpath: '#ededed' + cell-path: '#ededed' row_index: { fg: '#b1d630' attr: 'b' } record: '#ededed' list: '#ededed' diff --git a/themes/nu-themes/hemisu-light.nu b/themes/nu-themes/hemisu-light.nu index 46ad8e0..4734e18 100644 --- a/themes/nu-themes/hemisu-light.nu +++ b/themes/nu-themes/hemisu-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#999999' nothing: '#999999' binary: '#999999' - cellpath: '#999999' + cell-path: '#999999' row_index: { fg: '#739100' attr: 'b' } record: '#999999' list: '#999999' diff --git a/themes/nu-themes/highway.nu b/themes/nu-themes/highway.nu index 882ffc1..30c05d3 100644 --- a/themes/nu-themes/highway.nu +++ b/themes/nu-themes/highway.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ededed' nothing: '#ededed' binary: '#ededed' - cellpath: '#ededed' + cell-path: '#ededed' row_index: { fg: '#138034' attr: 'b' } record: '#ededed' list: '#ededed' diff --git a/themes/nu-themes/hipster-green.nu b/themes/nu-themes/hipster-green.nu index 25a847a..c0ea442 100644 --- a/themes/nu-themes/hipster-green.nu +++ b/themes/nu-themes/hipster-green.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#00a600' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/homebrew.nu b/themes/nu-themes/homebrew.nu index 5c36ada..3a9e39d 100644 --- a/themes/nu-themes/homebrew.nu +++ b/themes/nu-themes/homebrew.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#00a600' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/hopscotch.nu b/themes/nu-themes/hopscotch.nu index 63a687c..3e13d11 100644 --- a/themes/nu-themes/hopscotch.nu +++ b/themes/nu-themes/hopscotch.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b9b5b8' nothing: '#b9b5b8' binary: '#b9b5b8' - cellpath: '#b9b5b8' + cell-path: '#b9b5b8' row_index: { fg: '#8fc13e' attr: 'b' } record: '#b9b5b8' list: '#b9b5b8' diff --git a/themes/nu-themes/horizon-dark.nu b/themes/nu-themes/horizon-dark.nu index f301021..7b08f62 100644 --- a/themes/nu-themes/horizon-dark.nu +++ b/themes/nu-themes/horizon-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbced0' nothing: '#cbced0' binary: '#cbced0' - cellpath: '#cbced0' + cell-path: '#cbced0' row_index: { fg: '#efaf8e' attr: 'b' } record: '#cbced0' list: '#cbced0' diff --git a/themes/nu-themes/horizon-light.nu b/themes/nu-themes/horizon-light.nu index a626040..baa478b 100644 --- a/themes/nu-themes/horizon-light.nu +++ b/themes/nu-themes/horizon-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#403c3d' nothing: '#403c3d' binary: '#403c3d' - cellpath: '#403c3d' + cell-path: '#403c3d' row_index: { fg: '#94e1b0' attr: 'b' } record: '#403c3d' list: '#403c3d' diff --git a/themes/nu-themes/horizon-terminal-dark.nu b/themes/nu-themes/horizon-terminal-dark.nu index cdaff2b..4fb391f 100644 --- a/themes/nu-themes/horizon-terminal-dark.nu +++ b/themes/nu-themes/horizon-terminal-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbced0' nothing: '#cbced0' binary: '#cbced0' - cellpath: '#cbced0' + cell-path: '#cbced0' row_index: { fg: '#29d398' attr: 'b' } record: '#cbced0' list: '#cbced0' diff --git a/themes/nu-themes/horizon-terminal-light.nu b/themes/nu-themes/horizon-terminal-light.nu index f835d04..db67840 100644 --- a/themes/nu-themes/horizon-terminal-light.nu +++ b/themes/nu-themes/horizon-terminal-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#403c3d' nothing: '#403c3d' binary: '#403c3d' - cellpath: '#403c3d' + cell-path: '#403c3d' row_index: { fg: '#29d398' attr: 'b' } record: '#403c3d' list: '#403c3d' diff --git a/themes/nu-themes/humanoid-dark.nu b/themes/nu-themes/humanoid-dark.nu index 49a8382..1c94c72 100644 --- a/themes/nu-themes/humanoid-dark.nu +++ b/themes/nu-themes/humanoid-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f8f8f2' nothing: '#f8f8f2' binary: '#f8f8f2' - cellpath: '#f8f8f2' + cell-path: '#f8f8f2' row_index: { fg: '#02d849' attr: 'b' } record: '#f8f8f2' list: '#f8f8f2' diff --git a/themes/nu-themes/humanoid-light.nu b/themes/nu-themes/humanoid-light.nu index bd77738..2ecbf95 100644 --- a/themes/nu-themes/humanoid-light.nu +++ b/themes/nu-themes/humanoid-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#232629' nothing: '#232629' binary: '#232629' - cellpath: '#232629' + cell-path: '#232629' row_index: { fg: '#388e3c' attr: 'b' } record: '#232629' list: '#232629' diff --git a/themes/nu-themes/hurtado.nu b/themes/nu-themes/hurtado.nu index 68a0ee8..01a88c5 100644 --- a/themes/nu-themes/hurtado.nu +++ b/themes/nu-themes/hurtado.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cbcccb' nothing: '#cbcccb' binary: '#cbcccb' - cellpath: '#cbcccb' + cell-path: '#cbcccb' row_index: { fg: '#a5e055' attr: 'b' } record: '#cbcccb' list: '#cbcccb' diff --git a/themes/nu-themes/hybrid.nu b/themes/nu-themes/hybrid.nu index d3a0a4c..52fdfbb 100644 --- a/themes/nu-themes/hybrid.nu +++ b/themes/nu-themes/hybrid.nu @@ -37,7 +37,7 @@ export def main [] { string: '#969896' nothing: '#969896' binary: '#969896' - cellpath: '#969896' + cell-path: '#969896' row_index: { fg: '#8c9440' attr: 'b' } record: '#969896' list: '#969896' diff --git a/themes/nu-themes/ia-dark.nu b/themes/nu-themes/ia-dark.nu index cd49f85..4de16e3 100644 --- a/themes/nu-themes/ia-dark.nu +++ b/themes/nu-themes/ia-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#83a471' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/ia-light.nu b/themes/nu-themes/ia-light.nu index ce57809..3082dac 100644 --- a/themes/nu-themes/ia-light.nu +++ b/themes/nu-themes/ia-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#181818' nothing: '#181818' binary: '#181818' - cellpath: '#181818' + cell-path: '#181818' row_index: { fg: '#38781c' attr: 'b' } record: '#181818' list: '#181818' diff --git a/themes/nu-themes/ibm3270.nu b/themes/nu-themes/ibm3270.nu index 36790f5..5368331 100644 --- a/themes/nu-themes/ibm3270.nu +++ b/themes/nu-themes/ibm3270.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a5a5a5' nothing: '#a5a5a5' binary: '#a5a5a5' - cellpath: '#a5a5a5' + cell-path: '#a5a5a5' row_index: { fg: '#24d830' attr: 'b' } record: '#a5a5a5' list: '#a5a5a5' diff --git a/themes/nu-themes/ic-green-ppl.nu b/themes/nu-themes/ic-green-ppl.nu index 1b76305..e09fd61 100644 --- a/themes/nu-themes/ic-green-ppl.nu +++ b/themes/nu-themes/ic-green-ppl.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0ffef' nothing: '#e0ffef' binary: '#e0ffef' - cellpath: '#e0ffef' + cell-path: '#e0ffef' row_index: { fg: '#339c24' attr: 'b' } record: '#e0ffef' list: '#e0ffef' diff --git a/themes/nu-themes/ic-orange-ppl.nu b/themes/nu-themes/ic-orange-ppl.nu index ae80761..7bc6de2 100644 --- a/themes/nu-themes/ic-orange-ppl.nu +++ b/themes/nu-themes/ic-orange-ppl.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffc88a' nothing: '#ffc88a' binary: '#ffc88a' - cellpath: '#ffc88a' + cell-path: '#ffc88a' row_index: { fg: '#a4a900' attr: 'b' } record: '#ffc88a' list: '#ffc88a' diff --git a/themes/nu-themes/iceberg-light.nu b/themes/nu-themes/iceberg-light.nu index 0a6dd03..2dae557 100644 --- a/themes/nu-themes/iceberg-light.nu +++ b/themes/nu-themes/iceberg-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#33374c' nothing: '#33374c' binary: '#33374c' - cellpath: '#33374c' + cell-path: '#33374c' row_index: { fg: '#668e3d' attr: 'b' } record: '#33374c' list: '#33374c' diff --git a/themes/nu-themes/icy.nu b/themes/nu-themes/icy.nu index 20ff9ab..f426f0a 100644 --- a/themes/nu-themes/icy.nu +++ b/themes/nu-themes/icy.nu @@ -37,7 +37,7 @@ export def main [] { string: '#095b67' nothing: '#095b67' binary: '#095b67' - cellpath: '#095b67' + cell-path: '#095b67' row_index: { fg: '#4dd0e1' attr: 'b' } record: '#095b67' list: '#095b67' diff --git a/themes/nu-themes/idle-toes.nu b/themes/nu-themes/idle-toes.nu index b92ffb3..52b6459 100644 --- a/themes/nu-themes/idle-toes.nu +++ b/themes/nu-themes/idle-toes.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeeeec' nothing: '#eeeeec' binary: '#eeeeec' - cellpath: '#eeeeec' + cell-path: '#eeeeec' row_index: { fg: '#7fe173' attr: 'b' } record: '#eeeeec' list: '#eeeeec' diff --git a/themes/nu-themes/idm_3b.nu b/themes/nu-themes/idm_3b.nu index 3b6df2a..a34fa54 100644 --- a/themes/nu-themes/idm_3b.nu +++ b/themes/nu-themes/idm_3b.nu @@ -37,7 +37,7 @@ export def main [] { string: '#606060' nothing: '#606060' binary: '#606060' - cellpath: '#606060' + cell-path: '#606060' row_index: { fg: '#70d0a0' attr: 'b' } record: '#606060' list: '#606060' diff --git a/themes/nu-themes/ir-black.nu b/themes/nu-themes/ir-black.nu index dcf7afb..9376d25 100644 --- a/themes/nu-themes/ir-black.nu +++ b/themes/nu-themes/ir-black.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b5b3aa' nothing: '#b5b3aa' binary: '#b5b3aa' - cellpath: '#b5b3aa' + cell-path: '#b5b3aa' row_index: { fg: '#a8ff60' attr: 'b' } record: '#b5b3aa' list: '#b5b3aa' diff --git a/themes/nu-themes/irblack.nu b/themes/nu-themes/irblack.nu index dcf7afb..9376d25 100644 --- a/themes/nu-themes/irblack.nu +++ b/themes/nu-themes/irblack.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b5b3aa' nothing: '#b5b3aa' binary: '#b5b3aa' - cellpath: '#b5b3aa' + cell-path: '#b5b3aa' row_index: { fg: '#a8ff60' attr: 'b' } record: '#b5b3aa' list: '#b5b3aa' diff --git a/themes/nu-themes/isotope.nu b/themes/nu-themes/isotope.nu index ebea3d1..e04f5b2 100644 --- a/themes/nu-themes/isotope.nu +++ b/themes/nu-themes/isotope.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#33ff00' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/jackie-brown.nu b/themes/nu-themes/jackie-brown.nu index 714ea2d..48effa9 100644 --- a/themes/nu-themes/jackie-brown.nu +++ b/themes/nu-themes/jackie-brown.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#2baf2b' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/japanesque.nu b/themes/nu-themes/japanesque.nu index e0f63c3..9af5fdd 100644 --- a/themes/nu-themes/japanesque.nu +++ b/themes/nu-themes/japanesque.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fafaf6' nothing: '#fafaf6' binary: '#fafaf6' - cellpath: '#fafaf6' + cell-path: '#fafaf6' row_index: { fg: '#7bb75b' attr: 'b' } record: '#fafaf6' list: '#fafaf6' diff --git a/themes/nu-themes/jellybeans.nu b/themes/nu-themes/jellybeans.nu index 30622b2..dee0eaf 100644 --- a/themes/nu-themes/jellybeans.nu +++ b/themes/nu-themes/jellybeans.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dedede' nothing: '#dedede' binary: '#dedede' - cellpath: '#dedede' + cell-path: '#dedede' row_index: { fg: '#94b979' attr: 'b' } record: '#dedede' list: '#dedede' diff --git a/themes/nu-themes/jet-brains-darcula.nu b/themes/nu-themes/jet-brains-darcula.nu index ffc4361..dfb1aa2 100644 --- a/themes/nu-themes/jet-brains-darcula.nu +++ b/themes/nu-themes/jet-brains-darcula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#adadad' nothing: '#adadad' binary: '#adadad' - cellpath: '#adadad' + cell-path: '#adadad' row_index: { fg: '#126e00' attr: 'b' } record: '#adadad' list: '#adadad' diff --git a/themes/nu-themes/jup.nu b/themes/nu-themes/jup.nu index 22865ec..22d53b0 100644 --- a/themes/nu-themes/jup.nu +++ b/themes/nu-themes/jup.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#6fdd00' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/kibble.nu b/themes/nu-themes/kibble.nu index d0c59e0..fb12e71 100644 --- a/themes/nu-themes/kibble.nu +++ b/themes/nu-themes/kibble.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2d1e3' nothing: '#e2d1e3' binary: '#e2d1e3' - cellpath: '#e2d1e3' + cell-path: '#e2d1e3' row_index: { fg: '#29cf13' attr: 'b' } record: '#e2d1e3' list: '#e2d1e3' diff --git a/themes/nu-themes/kimber.nu b/themes/nu-themes/kimber.nu index c0d75c3..ec558fe 100644 --- a/themes/nu-themes/kimber.nu +++ b/themes/nu-themes/kimber.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dedee7' nothing: '#dedee7' binary: '#dedee7' - cellpath: '#dedee7' + cell-path: '#dedee7' row_index: { fg: '#99c899' attr: 'b' } record: '#dedee7' list: '#dedee7' diff --git a/themes/nu-themes/later-this-evening.nu b/themes/nu-themes/later-this-evening.nu index 6512ca5..3817dd1 100644 --- a/themes/nu-themes/later-this-evening.nu +++ b/themes/nu-themes/later-this-evening.nu @@ -37,7 +37,7 @@ export def main [] { string: '#3c3d3d' nothing: '#3c3d3d' binary: '#3c3d3d' - cellpath: '#3c3d3d' + cell-path: '#3c3d3d' row_index: { fg: '#afba67' attr: 'b' } record: '#3c3d3d' list: '#3c3d3d' diff --git a/themes/nu-themes/lavandula.nu b/themes/nu-themes/lavandula.nu index 5fe989e..b8c16e6 100644 --- a/themes/nu-themes/lavandula.nu +++ b/themes/nu-themes/lavandula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#736e7d' nothing: '#736e7d' binary: '#736e7d' - cellpath: '#736e7d' + cell-path: '#736e7d' row_index: { fg: '#337e6f' attr: 'b' } record: '#736e7d' list: '#736e7d' diff --git a/themes/nu-themes/liquid-carbon-transparent.nu b/themes/nu-themes/liquid-carbon-transparent.nu index fd8f5e7..48723d9 100644 --- a/themes/nu-themes/liquid-carbon-transparent.nu +++ b/themes/nu-themes/liquid-carbon-transparent.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bccccc' nothing: '#bccccc' binary: '#bccccc' - cellpath: '#bccccc' + cell-path: '#bccccc' row_index: { fg: '#559a70' attr: 'b' } record: '#bccccc' list: '#bccccc' diff --git a/themes/nu-themes/liquid-carbon.nu b/themes/nu-themes/liquid-carbon.nu index 144a714..a7bb806 100644 --- a/themes/nu-themes/liquid-carbon.nu +++ b/themes/nu-themes/liquid-carbon.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bccccc' nothing: '#bccccc' binary: '#bccccc' - cellpath: '#bccccc' + cell-path: '#bccccc' row_index: { fg: '#559a70' attr: 'b' } record: '#bccccc' list: '#bccccc' diff --git a/themes/nu-themes/london-tube.nu b/themes/nu-themes/london-tube.nu index 03c0ad9..ffdab24 100644 --- a/themes/nu-themes/london-tube.nu +++ b/themes/nu-themes/london-tube.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d8d8' nothing: '#d9d8d8' binary: '#d9d8d8' - cellpath: '#d9d8d8' + cell-path: '#d9d8d8' row_index: { fg: '#00853e' attr: 'b' } record: '#d9d8d8' list: '#d9d8d8' diff --git a/themes/nu-themes/macintosh.nu b/themes/nu-themes/macintosh.nu index b414a2d..36a294e 100644 --- a/themes/nu-themes/macintosh.nu +++ b/themes/nu-themes/macintosh.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c0c0c0' nothing: '#c0c0c0' binary: '#c0c0c0' - cellpath: '#c0c0c0' + cell-path: '#c0c0c0' row_index: { fg: '#1fb714' attr: 'b' } record: '#c0c0c0' list: '#c0c0c0' diff --git a/themes/nu-themes/maia.nu b/themes/nu-themes/maia.nu index d91909b..1e4b49c 100644 --- a/themes/nu-themes/maia.nu +++ b/themes/nu-themes/maia.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0e0e0' nothing: '#e0e0e0' binary: '#e0e0e0' - cellpath: '#e0e0e0' + cell-path: '#e0e0e0' row_index: { fg: '#7e807e' attr: 'b' } record: '#e0e0e0' list: '#e0e0e0' diff --git a/themes/nu-themes/man-page.nu b/themes/nu-themes/man-page.nu index 4a9518e..ab0cfc7 100644 --- a/themes/nu-themes/man-page.nu +++ b/themes/nu-themes/man-page.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#00a600' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/mar.nu b/themes/nu-themes/mar.nu index dff5076..815a0c6 100644 --- a/themes/nu-themes/mar.nu +++ b/themes/nu-themes/mar.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f8f8f8' nothing: '#f8f8f8' binary: '#f8f8f8' - cellpath: '#f8f8f8' + cell-path: '#f8f8f8' row_index: { fg: '#7bb540' attr: 'b' } record: '#f8f8f8' list: '#f8f8f8' diff --git a/themes/nu-themes/marrakesh.nu b/themes/nu-themes/marrakesh.nu index ab1ddda..cf052f4 100644 --- a/themes/nu-themes/marrakesh.nu +++ b/themes/nu-themes/marrakesh.nu @@ -37,7 +37,7 @@ export def main [] { string: '#948e48' nothing: '#948e48' binary: '#948e48' - cellpath: '#948e48' + cell-path: '#948e48' row_index: { fg: '#18974e' attr: 'b' } record: '#948e48' list: '#948e48' diff --git a/themes/nu-themes/materia.nu b/themes/nu-themes/materia.nu index 181ddf4..dd749da 100644 --- a/themes/nu-themes/materia.nu +++ b/themes/nu-themes/materia.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cdd3de' nothing: '#cdd3de' binary: '#cdd3de' - cellpath: '#cdd3de' + cell-path: '#cdd3de' row_index: { fg: '#8bd649' attr: 'b' } record: '#cdd3de' list: '#cdd3de' diff --git a/themes/nu-themes/material-dark.nu b/themes/nu-themes/material-dark.nu index 1121e48..fa1fc5e 100644 --- a/themes/nu-themes/material-dark.nu +++ b/themes/nu-themes/material-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeeeee' nothing: '#eeeeee' binary: '#eeeeee' - cellpath: '#eeeeee' + cell-path: '#eeeeee' row_index: { fg: '#457b23' attr: 'b' } record: '#eeeeee' list: '#eeeeee' diff --git a/themes/nu-themes/material-darker.nu b/themes/nu-themes/material-darker.nu index b7b47fb..6fac9ab 100644 --- a/themes/nu-themes/material-darker.nu +++ b/themes/nu-themes/material-darker.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeffff' nothing: '#eeffff' binary: '#eeffff' - cellpath: '#eeffff' + cell-path: '#eeffff' row_index: { fg: '#c3e88d' attr: 'b' } record: '#eeffff' list: '#eeffff' diff --git a/themes/nu-themes/material-lighter.nu b/themes/nu-themes/material-lighter.nu index 9c97344..a21a43e 100644 --- a/themes/nu-themes/material-lighter.nu +++ b/themes/nu-themes/material-lighter.nu @@ -37,7 +37,7 @@ export def main [] { string: '#80cbc4' nothing: '#80cbc4' binary: '#80cbc4' - cellpath: '#80cbc4' + cell-path: '#80cbc4' row_index: { fg: '#91b859' attr: 'b' } record: '#80cbc4' list: '#80cbc4' diff --git a/themes/nu-themes/material-palenight.nu b/themes/nu-themes/material-palenight.nu index d0c441b..9dc1855 100644 --- a/themes/nu-themes/material-palenight.nu +++ b/themes/nu-themes/material-palenight.nu @@ -37,7 +37,7 @@ export def main [] { string: '#959dcb' nothing: '#959dcb' binary: '#959dcb' - cellpath: '#959dcb' + cell-path: '#959dcb' row_index: { fg: '#c3e88d' attr: 'b' } record: '#959dcb' list: '#959dcb' diff --git a/themes/nu-themes/material-vivid.nu b/themes/nu-themes/material-vivid.nu index 2f756a4..abe7601 100644 --- a/themes/nu-themes/material-vivid.nu +++ b/themes/nu-themes/material-vivid.nu @@ -37,7 +37,7 @@ export def main [] { string: '#80868b' nothing: '#80868b' binary: '#80868b' - cellpath: '#80868b' + cell-path: '#80868b' row_index: { fg: '#00e676' attr: 'b' } record: '#80868b' list: '#80868b' diff --git a/themes/nu-themes/material.nu b/themes/nu-themes/material.nu index a2ec02d..c071d76 100644 --- a/themes/nu-themes/material.nu +++ b/themes/nu-themes/material.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeffff' nothing: '#eeffff' binary: '#eeffff' - cellpath: '#eeffff' + cell-path: '#eeffff' row_index: { fg: '#c3e88d' attr: 'b' } record: '#eeffff' list: '#eeffff' diff --git a/themes/nu-themes/mathias.nu b/themes/nu-themes/mathias.nu index 8879b6c..4873fde 100644 --- a/themes/nu-themes/mathias.nu +++ b/themes/nu-themes/mathias.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#a6e32d' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/medallion.nu b/themes/nu-themes/medallion.nu index ef77437..0cb22f1 100644 --- a/themes/nu-themes/medallion.nu +++ b/themes/nu-themes/medallion.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cac29a' nothing: '#cac29a' binary: '#cac29a' - cellpath: '#cac29a' + cell-path: '#cac29a' row_index: { fg: '#7c8b16' attr: 'b' } record: '#cac29a' list: '#cac29a' diff --git a/themes/nu-themes/mellow-purple.nu b/themes/nu-themes/mellow-purple.nu index ac61979..3ffd1c7 100644 --- a/themes/nu-themes/mellow-purple.nu +++ b/themes/nu-themes/mellow-purple.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffeeff' nothing: '#ffeeff' binary: '#ffeeff' - cellpath: '#ffeeff' + cell-path: '#ffeeff' row_index: { fg: '#05cb0d' attr: 'b' } record: '#ffeeff' list: '#ffeeff' diff --git a/themes/nu-themes/mexico-light.nu b/themes/nu-themes/mexico-light.nu index 7aeb47d..aa46e00 100644 --- a/themes/nu-themes/mexico-light.nu +++ b/themes/nu-themes/mexico-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#383838' nothing: '#383838' binary: '#383838' - cellpath: '#383838' + cell-path: '#383838' row_index: { fg: '#538947' attr: 'b' } record: '#383838' list: '#383838' diff --git a/themes/nu-themes/miramare.nu b/themes/nu-themes/miramare.nu index 57928e5..70bda12 100644 --- a/themes/nu-themes/miramare.nu +++ b/themes/nu-themes/miramare.nu @@ -37,7 +37,7 @@ export def main [] { string: '#444444' nothing: '#444444' binary: '#444444' - cellpath: '#444444' + cell-path: '#444444' row_index: { fg: '#87af87' attr: 'b' } record: '#444444' list: '#444444' diff --git a/themes/nu-themes/misterioso.nu b/themes/nu-themes/misterioso.nu index 025e325..9a310f7 100644 --- a/themes/nu-themes/misterioso.nu +++ b/themes/nu-themes/misterioso.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e1e1e0' nothing: '#e1e1e0' binary: '#e1e1e0' - cellpath: '#e1e1e0' + cell-path: '#e1e1e0' row_index: { fg: '#74af68' attr: 'b' } record: '#e1e1e0' list: '#e1e1e0' diff --git a/themes/nu-themes/miu.nu b/themes/nu-themes/miu.nu index 270610c..61a4cb6 100644 --- a/themes/nu-themes/miu.nu +++ b/themes/nu-themes/miu.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#7ab87a' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/mocha.nu b/themes/nu-themes/mocha.nu index 500fb6d..ae92338 100644 --- a/themes/nu-themes/mocha.nu +++ b/themes/nu-themes/mocha.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0c8c6' nothing: '#d0c8c6' binary: '#d0c8c6' - cellpath: '#d0c8c6' + cell-path: '#d0c8c6' row_index: { fg: '#beb55b' attr: 'b' } record: '#d0c8c6' list: '#d0c8c6' diff --git a/themes/nu-themes/molokai.nu b/themes/nu-themes/molokai.nu index 3f849a4..88ec082 100644 --- a/themes/nu-themes/molokai.nu +++ b/themes/nu-themes/molokai.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#23e298' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/mona-lisa.nu b/themes/nu-themes/mona-lisa.nu index 6142931..cf1e900 100644 --- a/themes/nu-themes/mona-lisa.nu +++ b/themes/nu-themes/mona-lisa.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f7d75c' nothing: '#f7d75c' binary: '#f7d75c' - cellpath: '#f7d75c' + cell-path: '#f7d75c' row_index: { fg: '#636232' attr: 'b' } record: '#f7d75c' list: '#f7d75c' diff --git a/themes/nu-themes/mono-amber.nu b/themes/nu-themes/mono-amber.nu index 7ed3f8a..eaa1d9e 100644 --- a/themes/nu-themes/mono-amber.nu +++ b/themes/nu-themes/mono-amber.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ff9400' nothing: '#ff9400' binary: '#ff9400' - cellpath: '#ff9400' + cell-path: '#ff9400' row_index: { fg: '#ff9400' attr: 'b' } record: '#ff9400' list: '#ff9400' diff --git a/themes/nu-themes/mono-cyan.nu b/themes/nu-themes/mono-cyan.nu index fbc4ad4..2f05447 100644 --- a/themes/nu-themes/mono-cyan.nu +++ b/themes/nu-themes/mono-cyan.nu @@ -37,7 +37,7 @@ export def main [] { string: '#00ccff' nothing: '#00ccff' binary: '#00ccff' - cellpath: '#00ccff' + cell-path: '#00ccff' row_index: { fg: '#00ccff' attr: 'b' } record: '#00ccff' list: '#00ccff' diff --git a/themes/nu-themes/mono-green.nu b/themes/nu-themes/mono-green.nu index 242e1e0..2ca71d7 100644 --- a/themes/nu-themes/mono-green.nu +++ b/themes/nu-themes/mono-green.nu @@ -37,7 +37,7 @@ export def main [] { string: '#0bff00' nothing: '#0bff00' binary: '#0bff00' - cellpath: '#0bff00' + cell-path: '#0bff00' row_index: { fg: '#0bff00' attr: 'b' } record: '#0bff00' list: '#0bff00' diff --git a/themes/nu-themes/mono-red.nu b/themes/nu-themes/mono-red.nu index 9f12ca3..7aa9e09 100644 --- a/themes/nu-themes/mono-red.nu +++ b/themes/nu-themes/mono-red.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ff3600' nothing: '#ff3600' binary: '#ff3600' - cellpath: '#ff3600' + cell-path: '#ff3600' row_index: { fg: '#ff3600' attr: 'b' } record: '#ff3600' list: '#ff3600' diff --git a/themes/nu-themes/mono-white.nu b/themes/nu-themes/mono-white.nu index a5bfcfb..09554fc 100644 --- a/themes/nu-themes/mono-white.nu +++ b/themes/nu-themes/mono-white.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fafafa' nothing: '#fafafa' binary: '#fafafa' - cellpath: '#fafafa' + cell-path: '#fafafa' row_index: { fg: '#fafafa' attr: 'b' } record: '#fafafa' list: '#fafafa' diff --git a/themes/nu-themes/mono-yellow.nu b/themes/nu-themes/mono-yellow.nu index 2318a9a..c508262 100644 --- a/themes/nu-themes/mono-yellow.nu +++ b/themes/nu-themes/mono-yellow.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffd300' nothing: '#ffd300' binary: '#ffd300' - cellpath: '#ffd300' + cell-path: '#ffd300' row_index: { fg: '#ffd300' attr: 'b' } record: '#ffd300' list: '#ffd300' diff --git a/themes/nu-themes/monokai-dark.nu b/themes/nu-themes/monokai-dark.nu index 976ac28..df90d4f 100644 --- a/themes/nu-themes/monokai-dark.nu +++ b/themes/nu-themes/monokai-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f9f8f5' nothing: '#f9f8f5' binary: '#f9f8f5' - cellpath: '#f9f8f5' + cell-path: '#f9f8f5' row_index: { fg: '#a6e22e' attr: 'b' } record: '#f9f8f5' list: '#f9f8f5' diff --git a/themes/nu-themes/monokai-soda.nu b/themes/nu-themes/monokai-soda.nu index e1dea7b..e868564 100644 --- a/themes/nu-themes/monokai-soda.nu +++ b/themes/nu-themes/monokai-soda.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c4c5b5' nothing: '#c4c5b5' binary: '#c4c5b5' - cellpath: '#c4c5b5' + cell-path: '#c4c5b5' row_index: { fg: '#98e024' attr: 'b' } record: '#c4c5b5' list: '#c4c5b5' diff --git a/themes/nu-themes/monokai.nu b/themes/nu-themes/monokai.nu index 96a3402..2051e11 100644 --- a/themes/nu-themes/monokai.nu +++ b/themes/nu-themes/monokai.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f8f8f2' nothing: '#f8f8f2' binary: '#f8f8f2' - cellpath: '#f8f8f2' + cell-path: '#f8f8f2' row_index: { fg: '#a6e22e' attr: 'b' } record: '#f8f8f2' list: '#f8f8f2' diff --git a/themes/nu-themes/mountaineer-grey.nu b/themes/nu-themes/mountaineer-grey.nu index 32f5fc7..9ac1370 100644 --- a/themes/nu-themes/mountaineer-grey.nu +++ b/themes/nu-themes/mountaineer-grey.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5c8c6' nothing: '#c5c8c6' binary: '#c5c8c6' - cellpath: '#c5c8c6' + cell-path: '#c5c8c6' row_index: { fg: '#b5bd68' attr: 'b' } record: '#c5c8c6' list: '#c5c8c6' diff --git a/themes/nu-themes/mountaineer.nu b/themes/nu-themes/mountaineer.nu index 4bae9d8..3c794ea 100644 --- a/themes/nu-themes/mountaineer.nu +++ b/themes/nu-themes/mountaineer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5c8c6' nothing: '#c5c8c6' binary: '#c5c8c6' - cellpath: '#c5c8c6' + cell-path: '#c5c8c6' row_index: { fg: '#b5bd68' attr: 'b' } record: '#c5c8c6' list: '#c5c8c6' diff --git a/themes/nu-themes/n0tch2k.nu b/themes/nu-themes/n0tch2k.nu index 8e0a89f..0acc95f 100644 --- a/themes/nu-themes/n0tch2k.nu +++ b/themes/nu-themes/n0tch2k.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0b8a3' nothing: '#d0b8a3' binary: '#d0b8a3' - cellpath: '#d0b8a3' + cell-path: '#d0b8a3' row_index: { fg: '#666666' attr: 'b' } record: '#d0b8a3' list: '#d0b8a3' diff --git a/themes/nu-themes/nebula.nu b/themes/nu-themes/nebula.nu index 2e4ceae..a76a4d0 100644 --- a/themes/nu-themes/nebula.nu +++ b/themes/nu-themes/nebula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a4a6a9' nothing: '#a4a6a9' binary: '#a4a6a9' - cellpath: '#a4a6a9' + cell-path: '#a4a6a9' row_index: { fg: '#6562a8' attr: 'b' } record: '#a4a6a9' list: '#a4a6a9' diff --git a/themes/nu-themes/neon-night.nu b/themes/nu-themes/neon-night.nu index f83beb9..bbb9aee 100644 --- a/themes/nu-themes/neon-night.nu +++ b/themes/nu-themes/neon-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c9cccd' nothing: '#c9cccd' binary: '#c9cccd' - cellpath: '#c9cccd' + cell-path: '#c9cccd' row_index: { fg: '#7efdd0' attr: 'b' } record: '#c9cccd' list: '#c9cccd' diff --git a/themes/nu-themes/neopolitan.nu b/themes/nu-themes/neopolitan.nu index 324d463..b0329d9 100644 --- a/themes/nu-themes/neopolitan.nu +++ b/themes/nu-themes/neopolitan.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f8f8f8' nothing: '#f8f8f8' binary: '#f8f8f8' - cellpath: '#f8f8f8' + cell-path: '#f8f8f8' row_index: { fg: '#61ce3c' attr: 'b' } record: '#f8f8f8' list: '#f8f8f8' diff --git a/themes/nu-themes/nep.nu b/themes/nu-themes/nep.nu index 2cf9acc..17625d6 100644 --- a/themes/nu-themes/nep.nu +++ b/themes/nu-themes/nep.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#00dd6f' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/neutron.nu b/themes/nu-themes/neutron.nu index 3525e1c..85d8040 100644 --- a/themes/nu-themes/neutron.nu +++ b/themes/nu-themes/neutron.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e6e8ef' nothing: '#e6e8ef' binary: '#e6e8ef' - cellpath: '#e6e8ef' + cell-path: '#e6e8ef' row_index: { fg: '#5ab977' attr: 'b' } record: '#e6e8ef' list: '#e6e8ef' diff --git a/themes/nu-themes/nightfly.nu b/themes/nu-themes/nightfly.nu index dfdc3a9..44a7781 100644 --- a/themes/nu-themes/nightfly.nu +++ b/themes/nu-themes/nightfly.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a1aab8' nothing: '#a1aab8' binary: '#a1aab8' - cellpath: '#a1aab8' + cell-path: '#a1aab8' row_index: { fg: '#a1cd5e' attr: 'b' } record: '#a1aab8' list: '#a1aab8' diff --git a/themes/nu-themes/nightlion-v1.nu b/themes/nu-themes/nightlion-v1.nu index 32658d4..991cc91 100644 --- a/themes/nu-themes/nightlion-v1.nu +++ b/themes/nu-themes/nightlion-v1.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#5fde8f' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/nightlion-v2.nu b/themes/nu-themes/nightlion-v2.nu index f9c9fa3..5d91232 100644 --- a/themes/nu-themes/nightlion-v2.nu +++ b/themes/nu-themes/nightlion-v2.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#04f623' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/nighty.nu b/themes/nu-themes/nighty.nu index 484d681..44ff263 100644 --- a/themes/nu-themes/nighty.nu +++ b/themes/nu-themes/nighty.nu @@ -37,7 +37,7 @@ export def main [] { string: '#828282' nothing: '#828282' binary: '#828282' - cellpath: '#828282' + cell-path: '#828282' row_index: { fg: '#095b32' attr: 'b' } record: '#828282' list: '#828282' diff --git a/themes/nu-themes/nord-alt.nu b/themes/nu-themes/nord-alt.nu index bcbe14e..2a7fa0e 100644 --- a/themes/nu-themes/nord-alt.nu +++ b/themes/nu-themes/nord-alt.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8fbcbb' nothing: '#8fbcbb' binary: '#8fbcbb' - cellpath: '#8fbcbb' + cell-path: '#8fbcbb' row_index: { fg: '#434c5e' attr: 'b' } record: '#8fbcbb' list: '#8fbcbb' diff --git a/themes/nu-themes/nord-light.nu b/themes/nu-themes/nord-light.nu index 187b52a..4afd952 100644 --- a/themes/nu-themes/nord-light.nu +++ b/themes/nu-themes/nord-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b3b3b3' nothing: '#b3b3b3' binary: '#b3b3b3' - cellpath: '#b3b3b3' + cell-path: '#b3b3b3' row_index: { fg: '#89d287' attr: 'b' } record: '#b3b3b3' list: '#b3b3b3' diff --git a/themes/nu-themes/nord.nu b/themes/nu-themes/nord.nu index 9788bab..213cf20 100644 --- a/themes/nu-themes/nord.nu +++ b/themes/nu-themes/nord.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e5e9f0' nothing: '#e5e9f0' binary: '#e5e9f0' - cellpath: '#e5e9f0' + cell-path: '#e5e9f0' row_index: { fg: '#a3be8c' attr: 'b' } record: '#e5e9f0' list: '#e5e9f0' diff --git a/themes/nu-themes/nova.nu b/themes/nu-themes/nova.nu index 4b2dd45..ec01b4f 100644 --- a/themes/nu-themes/nova.nu +++ b/themes/nu-themes/nova.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5d4dd' nothing: '#c5d4dd' binary: '#c5d4dd' - cellpath: '#c5d4dd' + cell-path: '#c5d4dd' row_index: { fg: '#7fc1ca' attr: 'b' } record: '#c5d4dd' list: '#c5d4dd' diff --git a/themes/nu-themes/novel.nu b/themes/nu-themes/novel.nu index 830fac5..67c722d 100644 --- a/themes/nu-themes/novel.nu +++ b/themes/nu-themes/novel.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#009600' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/nushell-dark.nu b/themes/nu-themes/nushell-dark.nu index 5d1d0e0..6004401 100644 --- a/themes/nu-themes/nushell-dark.nu +++ b/themes/nu-themes/nushell-dark.nu @@ -1,5 +1,6 @@ # Retrieve the theme settings -export def main [] { return { +export def main [] { + return { # color for nushell primitives separator: white leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off @@ -39,7 +40,7 @@ export def main [] { return { string: white nothing: white binary: white - cellpath: white + 'cell-path': white row_index: green_bold record: white list: white @@ -83,10 +84,11 @@ export def main [] { return { shape_variable: purple shape_vardecl: purple - background: dark_gray - foreground: default - cursor: red -}} + background: "#767676" + foreground: "#f2f2f2" + cursor: "#c50f1f" + } +} # Update the Nushell configuration export def --env "set color_config" [] { diff --git a/themes/nu-themes/nushell-light.nu b/themes/nu-themes/nushell-light.nu index 0f1133d..62b7cde 100644 --- a/themes/nu-themes/nushell-light.nu +++ b/themes/nu-themes/nushell-light.nu @@ -1,5 +1,6 @@ # Retrieve the theme settings -export def main [] { return { +export def main [] { + return { # color for nushell primitives separator: dark_gray leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off @@ -39,7 +40,7 @@ export def main [] { return { string: dark_gray nothing: dark_gray binary: dark_gray - cellpath: dark_gray + 'cell-path': dark_gray row_index: green_bold record: white list: white @@ -83,10 +84,11 @@ export def main [] { return { shape_variable: purple shape_vardecl: purple - background: light_gray - foreground: default - cursor: red -}} + background: "#f2f2f2" + foreground: "#767676" + cursor: "#c50f1f" + } +} # Update the Nushell configuration export def --env "set color_config" [] { diff --git a/themes/nu-themes/obsidian.nu b/themes/nu-themes/obsidian.nu index e66e4cf..3c61df5 100644 --- a/themes/nu-themes/obsidian.nu +++ b/themes/nu-themes/obsidian.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#00bb00' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/ocean-dark.nu b/themes/nu-themes/ocean-dark.nu index 90de84e..73eeae0 100644 --- a/themes/nu-themes/ocean-dark.nu +++ b/themes/nu-themes/ocean-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeedee' nothing: '#eeedee' binary: '#eeedee' - cellpath: '#eeedee' + cell-path: '#eeedee' row_index: { fg: '#afd383' attr: 'b' } record: '#eeedee' list: '#eeedee' diff --git a/themes/nu-themes/ocean.nu b/themes/nu-themes/ocean.nu index 27fd4c4..0a1a676 100644 --- a/themes/nu-themes/ocean.nu +++ b/themes/nu-themes/ocean.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c0c5ce' nothing: '#c0c5ce' binary: '#c0c5ce' - cellpath: '#c0c5ce' + cell-path: '#c0c5ce' row_index: { fg: '#a3be8c' attr: 'b' } record: '#c0c5ce' list: '#c0c5ce' diff --git a/themes/nu-themes/oceanic-material.nu b/themes/nu-themes/oceanic-material.nu index a0141ba..75f7646 100644 --- a/themes/nu-themes/oceanic-material.nu +++ b/themes/nu-themes/oceanic-material.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a4a4a4' nothing: '#a4a4a4' binary: '#a4a4a4' - cellpath: '#a4a4a4' + cell-path: '#a4a4a4' row_index: { fg: '#3fa33f' attr: 'b' } record: '#a4a4a4' list: '#a4a4a4' diff --git a/themes/nu-themes/oceanic-next.nu b/themes/nu-themes/oceanic-next.nu index 23f35af..5b13b9d 100644 --- a/themes/nu-themes/oceanic-next.nu +++ b/themes/nu-themes/oceanic-next.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#89bd82' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/oceanicnext.nu b/themes/nu-themes/oceanicnext.nu index 4c38fae..ce2bf15 100644 --- a/themes/nu-themes/oceanicnext.nu +++ b/themes/nu-themes/oceanicnext.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c0c5ce' nothing: '#c0c5ce' binary: '#c0c5ce' - cellpath: '#c0c5ce' + cell-path: '#c0c5ce' row_index: { fg: '#99c794' attr: 'b' } record: '#c0c5ce' list: '#c0c5ce' diff --git a/themes/nu-themes/ollie.nu b/themes/nu-themes/ollie.nu index 691ff47..835ac0f 100644 --- a/themes/nu-themes/ollie.nu +++ b/themes/nu-themes/ollie.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8a8eac' nothing: '#8a8eac' binary: '#8a8eac' - cellpath: '#8a8eac' + cell-path: '#8a8eac' row_index: { fg: '#31ac61' attr: 'b' } record: '#8a8eac' list: '#8a8eac' diff --git a/themes/nu-themes/one-dark.nu b/themes/nu-themes/one-dark.nu index 5e6a0a1..8e48736 100644 --- a/themes/nu-themes/one-dark.nu +++ b/themes/nu-themes/one-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#abb2bf' nothing: '#abb2bf' binary: '#abb2bf' - cellpath: '#abb2bf' + cell-path: '#abb2bf' row_index: { fg: '#98c379' attr: 'b' } record: '#abb2bf' list: '#abb2bf' diff --git a/themes/nu-themes/one-half-black.nu b/themes/nu-themes/one-half-black.nu index 4a51d43..e0d9b49 100644 --- a/themes/nu-themes/one-half-black.nu +++ b/themes/nu-themes/one-half-black.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dcdfe4' nothing: '#dcdfe4' binary: '#dcdfe4' - cellpath: '#dcdfe4' + cell-path: '#dcdfe4' row_index: { fg: '#98c379' attr: 'b' } record: '#dcdfe4' list: '#dcdfe4' diff --git a/themes/nu-themes/one-half-light.nu b/themes/nu-themes/one-half-light.nu index 558761c..cdabd9b 100644 --- a/themes/nu-themes/one-half-light.nu +++ b/themes/nu-themes/one-half-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fafafa' nothing: '#fafafa' binary: '#fafafa' - cellpath: '#fafafa' + cell-path: '#fafafa' row_index: { fg: '#40a14f' attr: 'b' } record: '#fafafa' list: '#fafafa' diff --git a/themes/nu-themes/one-light.nu b/themes/nu-themes/one-light.nu index 3366204..b6de4b1 100644 --- a/themes/nu-themes/one-light.nu +++ b/themes/nu-themes/one-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#383a42' nothing: '#383a42' binary: '#383a42' - cellpath: '#383a42' + cell-path: '#383a42' row_index: { fg: '#50a14f' attr: 'b' } record: '#383a42' list: '#383a42' diff --git a/themes/nu-themes/onedark.nu b/themes/nu-themes/onedark.nu index c0d7187..1edbe8f 100644 --- a/themes/nu-themes/onedark.nu +++ b/themes/nu-themes/onedark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#abb2bf' nothing: '#abb2bf' binary: '#abb2bf' - cellpath: '#abb2bf' + cell-path: '#abb2bf' row_index: { fg: '#98c379' attr: 'b' } record: '#abb2bf' list: '#abb2bf' diff --git a/themes/nu-themes/orbital.nu b/themes/nu-themes/orbital.nu index 78a634e..143ff64 100644 --- a/themes/nu-themes/orbital.nu +++ b/themes/nu-themes/orbital.nu @@ -37,7 +37,7 @@ export def main [] { string: '#0000d7' nothing: '#0000d7' binary: '#0000d7' - cellpath: '#0000d7' + cell-path: '#0000d7' row_index: { fg: '#bcbcbc' attr: 'b' } record: '#0000d7' list: '#0000d7' diff --git a/themes/nu-themes/outrun-dark.nu b/themes/nu-themes/outrun-dark.nu index 58e65a2..4253f21 100644 --- a/themes/nu-themes/outrun-dark.nu +++ b/themes/nu-themes/outrun-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0fa' nothing: '#d0d0fa' binary: '#d0d0fa' - cellpath: '#d0d0fa' + cell-path: '#d0d0fa' row_index: { fg: '#59f176' attr: 'b' } record: '#d0d0fa' list: '#d0d0fa' diff --git a/themes/nu-themes/pali.nu b/themes/nu-themes/pali.nu index 2692d0e..b3f3692 100644 --- a/themes/nu-themes/pali.nu +++ b/themes/nu-themes/pali.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#74ab8f' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/palmtree.nu b/themes/nu-themes/palmtree.nu index 0610052..05cad2a 100644 --- a/themes/nu-themes/palmtree.nu +++ b/themes/nu-themes/palmtree.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fdfdfd' nothing: '#fdfdfd' binary: '#fdfdfd' - cellpath: '#fdfdfd' + cell-path: '#fdfdfd' row_index: { fg: '#5adecd' attr: 'b' } record: '#fdfdfd' list: '#fdfdfd' diff --git a/themes/nu-themes/papercolor-dark.nu b/themes/nu-themes/papercolor-dark.nu index e7b6fac..125d179 100644 --- a/themes/nu-themes/papercolor-dark.nu +++ b/themes/nu-themes/papercolor-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#808080' nothing: '#808080' binary: '#808080' - cellpath: '#808080' + cell-path: '#808080' row_index: { fg: '#af87d7' attr: 'b' } record: '#808080' list: '#808080' diff --git a/themes/nu-themes/papercolor-light.nu b/themes/nu-themes/papercolor-light.nu index eb4beb2..afb269e 100644 --- a/themes/nu-themes/papercolor-light.nu +++ b/themes/nu-themes/papercolor-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#444444' nothing: '#444444' binary: '#444444' - cellpath: '#444444' + cell-path: '#444444' row_index: { fg: '#8700af' attr: 'b' } record: '#444444' list: '#444444' diff --git a/themes/nu-themes/paraiso-dark.nu b/themes/nu-themes/paraiso-dark.nu index a3fd9d9..d781969 100644 --- a/themes/nu-themes/paraiso-dark.nu +++ b/themes/nu-themes/paraiso-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a39e9b' nothing: '#a39e9b' binary: '#a39e9b' - cellpath: '#a39e9b' + cell-path: '#a39e9b' row_index: { fg: '#48b685' attr: 'b' } record: '#a39e9b' list: '#a39e9b' diff --git a/themes/nu-themes/paraiso.nu b/themes/nu-themes/paraiso.nu index a3fd9d9..d781969 100644 --- a/themes/nu-themes/paraiso.nu +++ b/themes/nu-themes/paraiso.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a39e9b' nothing: '#a39e9b' binary: '#a39e9b' - cellpath: '#a39e9b' + cell-path: '#a39e9b' row_index: { fg: '#48b685' attr: 'b' } record: '#a39e9b' list: '#a39e9b' diff --git a/themes/nu-themes/pasque.nu b/themes/nu-themes/pasque.nu index 5f13400..a99905a 100644 --- a/themes/nu-themes/pasque.nu +++ b/themes/nu-themes/pasque.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dedcdf' nothing: '#dedcdf' binary: '#dedcdf' - cellpath: '#dedcdf' + cell-path: '#dedcdf' row_index: { fg: '#c6914b' attr: 'b' } record: '#dedcdf' list: '#dedcdf' diff --git a/themes/nu-themes/paul-millr.nu b/themes/nu-themes/paul-millr.nu index 8482993..2cb9e42 100644 --- a/themes/nu-themes/paul-millr.nu +++ b/themes/nu-themes/paul-millr.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#79ff0f' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/pencil-dark.nu b/themes/nu-themes/pencil-dark.nu index 3bfdcd0..9b15e47 100644 --- a/themes/nu-themes/pencil-dark.nu +++ b/themes/nu-themes/pencil-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#10a778' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/pencil-light.nu b/themes/nu-themes/pencil-light.nu index 6759dec..a3a744f 100644 --- a/themes/nu-themes/pencil-light.nu +++ b/themes/nu-themes/pencil-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#10a778' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/peppermint.nu b/themes/nu-themes/peppermint.nu index 0237c1d..fc3a5eb 100644 --- a/themes/nu-themes/peppermint.nu +++ b/themes/nu-themes/peppermint.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b3b3b3' nothing: '#b3b3b3' binary: '#b3b3b3' - cellpath: '#b3b3b3' + cell-path: '#b3b3b3' row_index: { fg: '#89d287' attr: 'b' } record: '#b3b3b3' list: '#b3b3b3' diff --git a/themes/nu-themes/phd.nu b/themes/nu-themes/phd.nu index effbccd..a484316 100644 --- a/themes/nu-themes/phd.nu +++ b/themes/nu-themes/phd.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b8bbc2' nothing: '#b8bbc2' binary: '#b8bbc2' - cellpath: '#b8bbc2' + cell-path: '#b8bbc2' row_index: { fg: '#99bf52' attr: 'b' } record: '#b8bbc2' list: '#b8bbc2' diff --git a/themes/nu-themes/piatto-light.nu b/themes/nu-themes/piatto-light.nu index 699f38d..156d5f9 100644 --- a/themes/nu-themes/piatto-light.nu +++ b/themes/nu-themes/piatto-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#66781d' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/pico.nu b/themes/nu-themes/pico.nu index 2d0fb4f..0895293 100644 --- a/themes/nu-themes/pico.nu +++ b/themes/nu-themes/pico.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5f574f' nothing: '#5f574f' binary: '#5f574f' - cellpath: '#5f574f' + cell-path: '#5f574f' row_index: { fg: '#00e756' attr: 'b' } record: '#5f574f' list: '#5f574f' diff --git a/themes/nu-themes/pnevma.nu b/themes/nu-themes/pnevma.nu index 8d0e0c2..b775529 100644 --- a/themes/nu-themes/pnevma.nu +++ b/themes/nu-themes/pnevma.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#90a57d' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/pop.nu b/themes/nu-themes/pop.nu index 0ec2317..c7b767d 100644 --- a/themes/nu-themes/pop.nu +++ b/themes/nu-themes/pop.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#37b349' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/porple.nu b/themes/nu-themes/porple.nu index 755bc7a..e330292 100644 --- a/themes/nu-themes/porple.nu +++ b/themes/nu-themes/porple.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d8d8d8' nothing: '#d8d8d8' binary: '#d8d8d8' - cellpath: '#d8d8d8' + cell-path: '#d8d8d8' row_index: { fg: '#95c76f' attr: 'b' } record: '#d8d8d8' list: '#d8d8d8' diff --git a/themes/nu-themes/pro.nu b/themes/nu-themes/pro.nu index 192d6b5..d163c15 100644 --- a/themes/nu-themes/pro.nu +++ b/themes/nu-themes/pro.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#00a600' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/railscasts.nu b/themes/nu-themes/railscasts.nu index 398457d..8f25ce2 100644 --- a/themes/nu-themes/railscasts.nu +++ b/themes/nu-themes/railscasts.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e6e1dc' nothing: '#e6e1dc' binary: '#e6e1dc' - cellpath: '#e6e1dc' + cell-path: '#e6e1dc' row_index: { fg: '#a5c261' attr: 'b' } record: '#e6e1dc' list: '#e6e1dc' diff --git a/themes/nu-themes/rebecca.nu b/themes/nu-themes/rebecca.nu index 980baa9..2536f58 100644 --- a/themes/nu-themes/rebecca.nu +++ b/themes/nu-themes/rebecca.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f1eff8' nothing: '#f1eff8' binary: '#f1eff8' - cellpath: '#f1eff8' + cell-path: '#f1eff8' row_index: { fg: '#6dfedf' attr: 'b' } record: '#f1eff8' list: '#f1eff8' diff --git a/themes/nu-themes/red-alert.nu b/themes/nu-themes/red-alert.nu index 4120c11..214f4b8 100644 --- a/themes/nu-themes/red-alert.nu +++ b/themes/nu-themes/red-alert.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d6d6d6' nothing: '#d6d6d6' binary: '#d6d6d6' - cellpath: '#d6d6d6' + cell-path: '#d6d6d6' row_index: { fg: '#71be6b' attr: 'b' } record: '#d6d6d6' list: '#d6d6d6' diff --git a/themes/nu-themes/red-sands.nu b/themes/nu-themes/red-sands.nu index 448d0ae..2b230ab 100644 --- a/themes/nu-themes/red-sands.nu +++ b/themes/nu-themes/red-sands.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bbbbbb' nothing: '#bbbbbb' binary: '#bbbbbb' - cellpath: '#bbbbbb' + cell-path: '#bbbbbb' row_index: { fg: '#00bb00' attr: 'b' } record: '#bbbbbb' list: '#bbbbbb' diff --git a/themes/nu-themes/relaxed-afterglow.nu b/themes/nu-themes/relaxed-afterglow.nu index 2611fa7..464882c 100644 --- a/themes/nu-themes/relaxed-afterglow.nu +++ b/themes/nu-themes/relaxed-afterglow.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d9d9' nothing: '#d9d9d9' binary: '#d9d9d9' - cellpath: '#d9d9d9' + cell-path: '#d9d9d9' row_index: { fg: '#909d63' attr: 'b' } record: '#d9d9d9' list: '#d9d9d9' diff --git a/themes/nu-themes/renault-style-light.nu b/themes/nu-themes/renault-style-light.nu index d6311b6..46592b2 100644 --- a/themes/nu-themes/renault-style-light.nu +++ b/themes/nu-themes/renault-style-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#509f50' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/rippedcasts.nu b/themes/nu-themes/rippedcasts.nu index 37e8f79..461fbab 100644 --- a/themes/nu-themes/rippedcasts.nu +++ b/themes/nu-themes/rippedcasts.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#a8ff60' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/rose-pine-dawn.nu b/themes/nu-themes/rose-pine-dawn.nu index e373963..f01ed5f 100644 --- a/themes/nu-themes/rose-pine-dawn.nu +++ b/themes/nu-themes/rose-pine-dawn.nu @@ -37,7 +37,7 @@ export def main [] { string: '#575279' nothing: '#575279' binary: '#575279' - cellpath: '#575279' + cell-path: '#575279' row_index: { fg: '#d7827e' attr: 'b' } record: '#575279' list: '#575279' diff --git a/themes/nu-themes/rose-pine-moon.nu b/themes/nu-themes/rose-pine-moon.nu index 061c556..c3b70b1 100644 --- a/themes/nu-themes/rose-pine-moon.nu +++ b/themes/nu-themes/rose-pine-moon.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0def4' nothing: '#e0def4' binary: '#e0def4' - cellpath: '#e0def4' + cell-path: '#e0def4' row_index: { fg: '#ea9a97' attr: 'b' } record: '#e0def4' list: '#e0def4' diff --git a/themes/nu-themes/rose-pine.nu b/themes/nu-themes/rose-pine.nu index b2c92c6..b4255d8 100644 --- a/themes/nu-themes/rose-pine.nu +++ b/themes/nu-themes/rose-pine.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0def4' nothing: '#e0def4' binary: '#e0def4' - cellpath: '#e0def4' + cell-path: '#e0def4' row_index: { fg: '#ebbcba' attr: 'b' } record: '#e0def4' list: '#e0def4' diff --git a/themes/nu-themes/royal.nu b/themes/nu-themes/royal.nu index 37fb721..89c95c1 100644 --- a/themes/nu-themes/royal.nu +++ b/themes/nu-themes/royal.nu @@ -37,7 +37,7 @@ export def main [] { string: '#524966' nothing: '#524966' binary: '#524966' - cellpath: '#524966' + cell-path: '#524966' row_index: { fg: '#23801c' attr: 'b' } record: '#524966' list: '#524966' diff --git a/themes/nu-themes/sagelight.nu b/themes/nu-themes/sagelight.nu index f4b3438..564332d 100644 --- a/themes/nu-themes/sagelight.nu +++ b/themes/nu-themes/sagelight.nu @@ -37,7 +37,7 @@ export def main [] { string: '#383838' nothing: '#383838' binary: '#383838' - cellpath: '#383838' + cell-path: '#383838' row_index: { fg: '#a0d2c8' attr: 'b' } record: '#383838' list: '#383838' diff --git a/themes/nu-themes/sandcastle.nu b/themes/nu-themes/sandcastle.nu index 4505093..d82e861 100644 --- a/themes/nu-themes/sandcastle.nu +++ b/themes/nu-themes/sandcastle.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a89984' nothing: '#a89984' binary: '#a89984' - cellpath: '#a89984' + cell-path: '#a89984' row_index: { fg: '#528b8b' attr: 'b' } record: '#a89984' list: '#a89984' diff --git a/themes/nu-themes/sat.nu b/themes/nu-themes/sat.nu index 0e584f0..c84fa9a 100644 --- a/themes/nu-themes/sat.nu +++ b/themes/nu-themes/sat.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#07dd00' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/sea-shells.nu b/themes/nu-themes/sea-shells.nu index f56f280..9fd0b62 100644 --- a/themes/nu-themes/sea-shells.nu +++ b/themes/nu-themes/sea-shells.nu @@ -37,7 +37,7 @@ export def main [] { string: '#deb88d' nothing: '#deb88d' binary: '#deb88d' - cellpath: '#deb88d' + cell-path: '#deb88d' row_index: { fg: '#027c9b' attr: 'b' } record: '#deb88d' list: '#deb88d' diff --git a/themes/nu-themes/seafoam-pastel.nu b/themes/nu-themes/seafoam-pastel.nu index d28a89f..d94660d 100644 --- a/themes/nu-themes/seafoam-pastel.nu +++ b/themes/nu-themes/seafoam-pastel.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e0e0e0' nothing: '#e0e0e0' binary: '#e0e0e0' - cellpath: '#e0e0e0' + cell-path: '#e0e0e0' row_index: { fg: '#728c62' attr: 'b' } record: '#e0e0e0' list: '#e0e0e0' diff --git a/themes/nu-themes/selenized-black.nu b/themes/nu-themes/selenized-black.nu index 5e94759..fe556a4 100644 --- a/themes/nu-themes/selenized-black.nu +++ b/themes/nu-themes/selenized-black.nu @@ -37,7 +37,7 @@ export def main [] { string: '#777777' nothing: '#777777' binary: '#777777' - cellpath: '#777777' + cell-path: '#777777' row_index: { fg: '#70b433' attr: 'b' } record: '#777777' list: '#777777' diff --git a/themes/nu-themes/selenized-dark.nu b/themes/nu-themes/selenized-dark.nu index 56627b1..a2e649b 100644 --- a/themes/nu-themes/selenized-dark.nu +++ b/themes/nu-themes/selenized-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#72898f' nothing: '#72898f' binary: '#72898f' - cellpath: '#72898f' + cell-path: '#72898f' row_index: { fg: '#75b938' attr: 'b' } record: '#72898f' list: '#72898f' diff --git a/themes/nu-themes/selenized-light.nu b/themes/nu-themes/selenized-light.nu index fa8bda7..49a575e 100644 --- a/themes/nu-themes/selenized-light.nu +++ b/themes/nu-themes/selenized-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#909995' nothing: '#909995' binary: '#909995' - cellpath: '#909995' + cell-path: '#909995' row_index: { fg: '#489100' attr: 'b' } record: '#909995' list: '#909995' diff --git a/themes/nu-themes/selenized-white.nu b/themes/nu-themes/selenized-white.nu index 448b05a..edb81be 100644 --- a/themes/nu-themes/selenized-white.nu +++ b/themes/nu-themes/selenized-white.nu @@ -37,7 +37,7 @@ export def main [] { string: '#878787' nothing: '#878787' binary: '#878787' - cellpath: '#878787' + cell-path: '#878787' row_index: { fg: '#1d9700' attr: 'b' } record: '#878787' list: '#878787' diff --git a/themes/nu-themes/seoul256.nu b/themes/nu-themes/seoul256.nu index bb3f9af..7873722 100644 --- a/themes/nu-themes/seoul256.nu +++ b/themes/nu-themes/seoul256.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#5f865f' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/seti-ui.nu b/themes/nu-themes/seti-ui.nu index b3519d9..fba91ca 100644 --- a/themes/nu-themes/seti-ui.nu +++ b/themes/nu-themes/seti-ui.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d6d6d6' nothing: '#d6d6d6' binary: '#d6d6d6' - cellpath: '#d6d6d6' + cell-path: '#d6d6d6' row_index: { fg: '#9fca56' attr: 'b' } record: '#d6d6d6' list: '#d6d6d6' diff --git a/themes/nu-themes/seti.nu b/themes/nu-themes/seti.nu index 6b1048b..4548964 100644 --- a/themes/nu-themes/seti.nu +++ b/themes/nu-themes/seti.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d6d6d6' nothing: '#d6d6d6' binary: '#d6d6d6' - cellpath: '#d6d6d6' + cell-path: '#d6d6d6' row_index: { fg: '#9fca56' attr: 'b' } record: '#d6d6d6' list: '#d6d6d6' diff --git a/themes/nu-themes/shaman.nu b/themes/nu-themes/shaman.nu index aae9cd7..33b20f0 100644 --- a/themes/nu-themes/shaman.nu +++ b/themes/nu-themes/shaman.nu @@ -37,7 +37,7 @@ export def main [] { string: '#405555' nothing: '#405555' binary: '#405555' - cellpath: '#405555' + cell-path: '#405555' row_index: { fg: '#00a941' attr: 'b' } record: '#405555' list: '#405555' diff --git a/themes/nu-themes/shapeshifter.nu b/themes/nu-themes/shapeshifter.nu index 4fe5cfa..e5616fd 100644 --- a/themes/nu-themes/shapeshifter.nu +++ b/themes/nu-themes/shapeshifter.nu @@ -37,7 +37,7 @@ export def main [] { string: '#102015' nothing: '#102015' binary: '#102015' - cellpath: '#102015' + cell-path: '#102015' row_index: { fg: '#0ed839' attr: 'b' } record: '#102015' list: '#102015' diff --git a/themes/nu-themes/shel.nu b/themes/nu-themes/shel.nu index 037c924..97cce28 100644 --- a/themes/nu-themes/shel.nu +++ b/themes/nu-themes/shel.nu @@ -37,7 +37,7 @@ export def main [] { string: '#918988' nothing: '#918988' binary: '#918988' - cellpath: '#918988' + cell-path: '#918988' row_index: { fg: '#6ca323' attr: 'b' } record: '#918988' list: '#918988' diff --git a/themes/nu-themes/sierra.nu b/themes/nu-themes/sierra.nu index 83beb56..fec96fb 100644 --- a/themes/nu-themes/sierra.nu +++ b/themes/nu-themes/sierra.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bb7774' nothing: '#bb7774' binary: '#bb7774' - cellpath: '#bb7774' + cell-path: '#bb7774' row_index: { fg: '#68694f' attr: 'b' } record: '#bb7774' list: '#bb7774' diff --git a/themes/nu-themes/silk-dark.nu b/themes/nu-themes/silk-dark.nu index 2b7f31a..0dbb4d7 100644 --- a/themes/nu-themes/silk-dark.nu +++ b/themes/nu-themes/silk-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c7dbdd' nothing: '#c7dbdd' binary: '#c7dbdd' - cellpath: '#c7dbdd' + cell-path: '#c7dbdd' row_index: { fg: '#73d8ad' attr: 'b' } record: '#c7dbdd' list: '#c7dbdd' diff --git a/themes/nu-themes/silk-light.nu b/themes/nu-themes/silk-light.nu index d761e66..7a24dde 100644 --- a/themes/nu-themes/silk-light.nu +++ b/themes/nu-themes/silk-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#385156' nothing: '#385156' binary: '#385156' - cellpath: '#385156' + cell-path: '#385156' row_index: { fg: '#6ca38c' attr: 'b' } record: '#385156' list: '#385156' diff --git a/themes/nu-themes/slate.nu b/themes/nu-themes/slate.nu index 3cda15d..ff42e2a 100644 --- a/themes/nu-themes/slate.nu +++ b/themes/nu-themes/slate.nu @@ -37,7 +37,7 @@ export def main [] { string: '#02c5e0' nothing: '#02c5e0' binary: '#02c5e0' - cellpath: '#02c5e0' + cell-path: '#02c5e0' row_index: { fg: '#81d778' attr: 'b' } record: '#02c5e0' list: '#02c5e0' diff --git a/themes/nu-themes/smyck.nu b/themes/nu-themes/smyck.nu index ce6e95e..1fe4062 100644 --- a/themes/nu-themes/smyck.nu +++ b/themes/nu-themes/smyck.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b0b0b0' nothing: '#b0b0b0' binary: '#b0b0b0' - cellpath: '#b0b0b0' + cell-path: '#b0b0b0' row_index: { fg: '#8eb33b' attr: 'b' } record: '#b0b0b0' list: '#b0b0b0' diff --git a/themes/nu-themes/snazzy.nu b/themes/nu-themes/snazzy.nu index bf628ea..bd52afd 100644 --- a/themes/nu-themes/snazzy.nu +++ b/themes/nu-themes/snazzy.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2e4e5' nothing: '#e2e4e5' binary: '#e2e4e5' - cellpath: '#e2e4e5' + cell-path: '#e2e4e5' row_index: { fg: '#5af78e' attr: 'b' } record: '#e2e4e5' list: '#e2e4e5' diff --git a/themes/nu-themes/snow-dark.nu b/themes/nu-themes/snow-dark.nu index 192af7a..a47dab3 100644 --- a/themes/nu-themes/snow-dark.nu +++ b/themes/nu-themes/snow-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#afb7c0' nothing: '#afb7c0' binary: '#afb7c0' - cellpath: '#afb7c0' + cell-path: '#afb7c0' row_index: { fg: '#7f9d77' attr: 'b' } record: '#afb7c0' list: '#afb7c0' diff --git a/themes/nu-themes/snow-light.nu b/themes/nu-themes/snow-light.nu index 220fa47..5e48f94 100644 --- a/themes/nu-themes/snow-light.nu +++ b/themes/nu-themes/snow-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#535c65' nothing: '#535c65' binary: '#535c65' - cellpath: '#535c65' + cell-path: '#535c65' row_index: { fg: '#4d7f43' attr: 'b' } record: '#535c65' list: '#535c65' diff --git a/themes/nu-themes/soft-server.nu b/themes/nu-themes/soft-server.nu index 3317663..41c950b 100644 --- a/themes/nu-themes/soft-server.nu +++ b/themes/nu-themes/soft-server.nu @@ -37,7 +37,7 @@ export def main [] { string: '#99a3a2' nothing: '#99a3a2' binary: '#99a3a2' - cellpath: '#99a3a2' + cell-path: '#99a3a2' row_index: { fg: '#9aa56a' attr: 'b' } record: '#99a3a2' list: '#99a3a2' diff --git a/themes/nu-themes/solar-flare.nu b/themes/nu-themes/solar-flare.nu index c2d879c..6b201ba 100644 --- a/themes/nu-themes/solar-flare.nu +++ b/themes/nu-themes/solar-flare.nu @@ -37,7 +37,7 @@ export def main [] { string: '#A6AFB8' nothing: '#A6AFB8' binary: '#A6AFB8' - cellpath: '#A6AFB8' + cell-path: '#A6AFB8' row_index: { fg: '#7CC844' attr: 'b' } record: '#A6AFB8' list: '#A6AFB8' diff --git a/themes/nu-themes/solarflare-light.nu b/themes/nu-themes/solarflare-light.nu index fb3d82b..1c57be4 100644 --- a/themes/nu-themes/solarflare-light.nu +++ b/themes/nu-themes/solarflare-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#586875' nothing: '#586875' binary: '#586875' - cellpath: '#586875' + cell-path: '#586875' row_index: { fg: '#7cc844' attr: 'b' } record: '#586875' list: '#586875' diff --git a/themes/nu-themes/solarflare.nu b/themes/nu-themes/solarflare.nu index 68452f3..dd3a530 100644 --- a/themes/nu-themes/solarflare.nu +++ b/themes/nu-themes/solarflare.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a6afb8' nothing: '#a6afb8' binary: '#a6afb8' - cellpath: '#a6afb8' + cell-path: '#a6afb8' row_index: { fg: '#7cc844' attr: 'b' } record: '#a6afb8' list: '#a6afb8' diff --git a/themes/nu-themes/solarized-darcula.nu b/themes/nu-themes/solarized-darcula.nu index 5be4eff..ba967ce 100644 --- a/themes/nu-themes/solarized-darcula.nu +++ b/themes/nu-themes/solarized-darcula.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d2d8d9' nothing: '#d2d8d9' binary: '#d2d8d9' - cellpath: '#d2d8d9' + cell-path: '#d2d8d9' row_index: { fg: '#629655' attr: 'b' } record: '#d2d8d9' list: '#d2d8d9' diff --git a/themes/nu-themes/solarized-dark-higher-contrast.nu b/themes/nu-themes/solarized-dark-higher-contrast.nu index a2e91f5..86910d8 100644 --- a/themes/nu-themes/solarized-dark-higher-contrast.nu +++ b/themes/nu-themes/solarized-dark-higher-contrast.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eae3cb' nothing: '#eae3cb' binary: '#eae3cb' - cellpath: '#eae3cb' + cell-path: '#eae3cb' row_index: { fg: '#6cbe6c' attr: 'b' } record: '#eae3cb' list: '#eae3cb' diff --git a/themes/nu-themes/solarized-dark.nu b/themes/nu-themes/solarized-dark.nu index fc6902f..0d74954 100644 --- a/themes/nu-themes/solarized-dark.nu +++ b/themes/nu-themes/solarized-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#93a1a1' nothing: '#93a1a1' binary: '#93a1a1' - cellpath: '#93a1a1' + cell-path: '#93a1a1' row_index: { fg: '#859900' attr: 'b' } record: '#93a1a1' list: '#93a1a1' diff --git a/themes/nu-themes/solarized-light.nu b/themes/nu-themes/solarized-light.nu index b1f04c5..088384a 100644 --- a/themes/nu-themes/solarized-light.nu +++ b/themes/nu-themes/solarized-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#586e75' nothing: '#586e75' binary: '#586e75' - cellpath: '#586e75' + cell-path: '#586e75' row_index: { fg: '#859900' attr: 'b' } record: '#586e75' list: '#586e75' diff --git a/themes/nu-themes/source-code-x.nu b/themes/nu-themes/source-code-x.nu index d14dd76..be68a84 100644 --- a/themes/nu-themes/source-code-x.nu +++ b/themes/nu-themes/source-code-x.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#74b391' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/sourcerer.nu b/themes/nu-themes/sourcerer.nu index e736a7f..e898c46 100644 --- a/themes/nu-themes/sourcerer.nu +++ b/themes/nu-themes/sourcerer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d3d3' nothing: '#d3d3d3' binary: '#d3d3d3' - cellpath: '#d3d3d3' + cell-path: '#d3d3d3' row_index: { fg: '#719611' attr: 'b' } record: '#d3d3d3' list: '#d3d3d3' diff --git a/themes/nu-themes/sourcerer2.nu b/themes/nu-themes/sourcerer2.nu index e736a7f..e898c46 100644 --- a/themes/nu-themes/sourcerer2.nu +++ b/themes/nu-themes/sourcerer2.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d3d3' nothing: '#d3d3d3' binary: '#d3d3d3' - cellpath: '#d3d3d3' + cell-path: '#d3d3d3' row_index: { fg: '#719611' attr: 'b' } record: '#d3d3d3' list: '#d3d3d3' diff --git a/themes/nu-themes/spaceduck.nu b/themes/nu-themes/spaceduck.nu index cf5ef32..243d737 100644 --- a/themes/nu-themes/spaceduck.nu +++ b/themes/nu-themes/spaceduck.nu @@ -37,7 +37,7 @@ export def main [] { string: '#686f9a' nothing: '#686f9a' binary: '#686f9a' - cellpath: '#686f9a' + cell-path: '#686f9a' row_index: { fg: '#5ccc96' attr: 'b' } record: '#686f9a' list: '#686f9a' diff --git a/themes/nu-themes/spacedust.nu b/themes/nu-themes/spacedust.nu index 3b98ad7..30ae7d4 100644 --- a/themes/nu-themes/spacedust.nu +++ b/themes/nu-themes/spacedust.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f0f1ce' nothing: '#f0f1ce' binary: '#f0f1ce' - cellpath: '#f0f1ce' + cell-path: '#f0f1ce' row_index: { fg: '#5cab96' attr: 'b' } record: '#f0f1ce' list: '#f0f1ce' diff --git a/themes/nu-themes/spacegray-eighties-dull.nu b/themes/nu-themes/spacegray-eighties-dull.nu index 2a0a7ad..3a5c8a1 100644 --- a/themes/nu-themes/spacegray-eighties-dull.nu +++ b/themes/nu-themes/spacegray-eighties-dull.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b3b8c3' nothing: '#b3b8c3' binary: '#b3b8c3' - cellpath: '#b3b8c3' + cell-path: '#b3b8c3' row_index: { fg: '#92b477' attr: 'b' } record: '#b3b8c3' list: '#b3b8c3' diff --git a/themes/nu-themes/spacegray-eighties.nu b/themes/nu-themes/spacegray-eighties.nu index 176a5a4..f21d2d7 100644 --- a/themes/nu-themes/spacegray-eighties.nu +++ b/themes/nu-themes/spacegray-eighties.nu @@ -37,7 +37,7 @@ export def main [] { string: '#efece7' nothing: '#efece7' binary: '#efece7' - cellpath: '#efece7' + cell-path: '#efece7' row_index: { fg: '#81a764' attr: 'b' } record: '#efece7' list: '#efece7' diff --git a/themes/nu-themes/spacegray.nu b/themes/nu-themes/spacegray.nu index f3a7838..44addf4 100644 --- a/themes/nu-themes/spacegray.nu +++ b/themes/nu-themes/spacegray.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b3b8c3' nothing: '#b3b8c3' binary: '#b3b8c3' - cellpath: '#b3b8c3' + cell-path: '#b3b8c3' row_index: { fg: '#87b379' attr: 'b' } record: '#b3b8c3' list: '#b3b8c3' diff --git a/themes/nu-themes/spacemacs.nu b/themes/nu-themes/spacemacs.nu index e37fcd9..2dc38e2 100644 --- a/themes/nu-themes/spacemacs.nu +++ b/themes/nu-themes/spacemacs.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a3a3a3' nothing: '#a3a3a3' binary: '#a3a3a3' - cellpath: '#a3a3a3' + cell-path: '#a3a3a3' row_index: { fg: '#67b11d' attr: 'b' } record: '#a3a3a3' list: '#a3a3a3' diff --git a/themes/nu-themes/spiderman.nu b/themes/nu-themes/spiderman.nu index b541398..f22c9d0 100644 --- a/themes/nu-themes/spiderman.nu +++ b/themes/nu-themes/spiderman.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fffef6' nothing: '#fffef6' binary: '#fffef6' - cellpath: '#fffef6' + cell-path: '#fffef6' row_index: { fg: '#e22828' attr: 'b' } record: '#fffef6' list: '#fffef6' diff --git a/themes/nu-themes/spring.nu b/themes/nu-themes/spring.nu index de0e76f..749e37c 100644 --- a/themes/nu-themes/spring.nu +++ b/themes/nu-themes/spring.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#1f8c3b' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/square.nu b/themes/nu-themes/square.nu index 6009abe..cdb7085 100644 --- a/themes/nu-themes/square.nu +++ b/themes/nu-themes/square.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2f2f2' nothing: '#f2f2f2' binary: '#f2f2f2' - cellpath: '#f2f2f2' + cell-path: '#f2f2f2' row_index: { fg: '#b6377d' attr: 'b' } record: '#f2f2f2' list: '#f2f2f2' diff --git a/themes/nu-themes/srcery.nu b/themes/nu-themes/srcery.nu index 0895b44..0843b45 100644 --- a/themes/nu-themes/srcery.nu +++ b/themes/nu-themes/srcery.nu @@ -37,7 +37,7 @@ export def main [] { string: '#baa67f' nothing: '#baa67f' binary: '#baa67f' - cellpath: '#baa67f' + cell-path: '#baa67f' row_index: { fg: '#519f50' attr: 'b' } record: '#baa67f' list: '#baa67f' diff --git a/themes/nu-themes/substrata.nu b/themes/nu-themes/substrata.nu index 133b0e4..3a1507a 100644 --- a/themes/nu-themes/substrata.nu +++ b/themes/nu-themes/substrata.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b5b4c9' nothing: '#b5b4c9' binary: '#b5b4c9' - cellpath: '#b5b4c9' + cell-path: '#b5b4c9' row_index: { fg: '#76a065' attr: 'b' } record: '#b5b4c9' list: '#b5b4c9' diff --git a/themes/nu-themes/summercamp.nu b/themes/nu-themes/summercamp.nu index e3d34c1..4897f8d 100644 --- a/themes/nu-themes/summercamp.nu +++ b/themes/nu-themes/summercamp.nu @@ -37,7 +37,7 @@ export def main [] { string: '#736e55' nothing: '#736e55' binary: '#736e55' - cellpath: '#736e55' + cell-path: '#736e55' row_index: { fg: '#5ceb5a' attr: 'b' } record: '#736e55' list: '#736e55' diff --git a/themes/nu-themes/summerfruit-dark.nu b/themes/nu-themes/summerfruit-dark.nu index 34508f8..d464316 100644 --- a/themes/nu-themes/summerfruit-dark.nu +++ b/themes/nu-themes/summerfruit-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#00c918' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/summerfruit-light.nu b/themes/nu-themes/summerfruit-light.nu index f3cd81e..a558dc8 100644 --- a/themes/nu-themes/summerfruit-light.nu +++ b/themes/nu-themes/summerfruit-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#101010' nothing: '#101010' binary: '#101010' - cellpath: '#101010' + cell-path: '#101010' row_index: { fg: '#00c918' attr: 'b' } record: '#101010' list: '#101010' diff --git a/themes/nu-themes/sundried.nu b/themes/nu-themes/sundried.nu index 296a8ca..dd3b467 100644 --- a/themes/nu-themes/sundried.nu +++ b/themes/nu-themes/sundried.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c9c9c9' nothing: '#c9c9c9' binary: '#c9c9c9' - cellpath: '#c9c9c9' + cell-path: '#c9c9c9' row_index: { fg: '#587744' attr: 'b' } record: '#c9c9c9' list: '#c9c9c9' diff --git a/themes/nu-themes/symphonic.nu b/themes/nu-themes/symphonic.nu index dac550b..5b98d09 100644 --- a/themes/nu-themes/symphonic.nu +++ b/themes/nu-themes/symphonic.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#56db3a' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/synth-midnight-dark.nu b/themes/nu-themes/synth-midnight-dark.nu index 94c1036..b7e8331 100644 --- a/themes/nu-themes/synth-midnight-dark.nu +++ b/themes/nu-themes/synth-midnight-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c1c3c4' nothing: '#c1c3c4' binary: '#c1c3c4' - cellpath: '#c1c3c4' + cell-path: '#c1c3c4' row_index: { fg: '#06ea61' attr: 'b' } record: '#c1c3c4' list: '#c1c3c4' diff --git a/themes/nu-themes/synth-midnight-light.nu b/themes/nu-themes/synth-midnight-light.nu index f6f7090..a7adeda 100644 --- a/themes/nu-themes/synth-midnight-light.nu +++ b/themes/nu-themes/synth-midnight-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#28292a' nothing: '#28292a' binary: '#28292a' - cellpath: '#28292a' + cell-path: '#28292a' row_index: { fg: '#06ea61' attr: 'b' } record: '#28292a' list: '#28292a' diff --git a/themes/nu-themes/tango-dark.nu b/themes/nu-themes/tango-dark.nu index 4eaebba..62ba76e 100644 --- a/themes/nu-themes/tango-dark.nu +++ b/themes/nu-themes/tango-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d7cf' nothing: '#d3d7cf' binary: '#d3d7cf' - cellpath: '#d3d7cf' + cell-path: '#d3d7cf' row_index: { fg: '#4e9a05' attr: 'b' } record: '#d3d7cf' list: '#d3d7cf' diff --git a/themes/nu-themes/tango-light.nu b/themes/nu-themes/tango-light.nu index 5207f4a..c424043 100644 --- a/themes/nu-themes/tango-light.nu +++ b/themes/nu-themes/tango-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d7cf' nothing: '#d3d7cf' binary: '#d3d7cf' - cellpath: '#d3d7cf' + cell-path: '#d3d7cf' row_index: { fg: '#4e9a05' attr: 'b' } record: '#d3d7cf' list: '#d3d7cf' diff --git a/themes/nu-themes/tango.nu b/themes/nu-themes/tango.nu index 46b1f12..8edad5f 100644 --- a/themes/nu-themes/tango.nu +++ b/themes/nu-themes/tango.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d3d7cf' nothing: '#d3d7cf' binary: '#d3d7cf' - cellpath: '#d3d7cf' + cell-path: '#d3d7cf' row_index: { fg: '#4e9a06' attr: 'b' } record: '#d3d7cf' list: '#d3d7cf' diff --git a/themes/nu-themes/teerb.nu b/themes/nu-themes/teerb.nu index a19c666..03abd80 100644 --- a/themes/nu-themes/teerb.nu +++ b/themes/nu-themes/teerb.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0d0d0' nothing: '#d0d0d0' binary: '#d0d0d0' - cellpath: '#d0d0d0' + cell-path: '#d0d0d0' row_index: { fg: '#aed686' attr: 'b' } record: '#d0d0d0' list: '#d0d0d0' diff --git a/themes/nu-themes/tempus-autumn.nu b/themes/nu-themes/tempus-autumn.nu index fd05c3e..de89bd5 100644 --- a/themes/nu-themes/tempus-autumn.nu +++ b/themes/nu-themes/tempus-autumn.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a5918a' nothing: '#a5918a' binary: '#a5918a' - cellpath: '#a5918a' + cell-path: '#a5918a' row_index: { fg: '#80a100' attr: 'b' } record: '#a5918a' list: '#a5918a' diff --git a/themes/nu-themes/tempus-classic.nu b/themes/nu-themes/tempus-classic.nu index 602c303..9d5c6e7 100644 --- a/themes/nu-themes/tempus-classic.nu +++ b/themes/nu-themes/tempus-classic.nu @@ -37,7 +37,7 @@ export def main [] { string: '#949d9f' nothing: '#949d9f' binary: '#949d9f' - cellpath: '#949d9f' + cell-path: '#949d9f' row_index: { fg: '#8c9e3d' attr: 'b' } record: '#949d9f' list: '#949d9f' diff --git a/themes/nu-themes/tempus-dawn.nu b/themes/nu-themes/tempus-dawn.nu index 42b2e54..de3c23d 100644 --- a/themes/nu-themes/tempus-dawn.nu +++ b/themes/nu-themes/tempus-dawn.nu @@ -37,7 +37,7 @@ export def main [] { string: '#e2e4e1' nothing: '#e2e4e1' binary: '#e2e4e1' - cellpath: '#e2e4e1' + cell-path: '#e2e4e1' row_index: { fg: '#206620' attr: 'b' } record: '#e2e4e1' list: '#e2e4e1' diff --git a/themes/nu-themes/tempus-day.nu b/themes/nu-themes/tempus-day.nu index 161c7d4..1fdbe80 100644 --- a/themes/nu-themes/tempus-day.nu +++ b/themes/nu-themes/tempus-day.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eae9dd' nothing: '#eae9dd' binary: '#eae9dd' - cellpath: '#eae9dd' + cell-path: '#eae9dd' row_index: { fg: '#107410' attr: 'b' } record: '#eae9dd' list: '#eae9dd' diff --git a/themes/nu-themes/tempus-dusk.nu b/themes/nu-themes/tempus-dusk.nu index f69661a..e87c743 100644 --- a/themes/nu-themes/tempus-dusk.nu +++ b/themes/nu-themes/tempus-dusk.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a29899' nothing: '#a29899' binary: '#a29899' - cellpath: '#a29899' + cell-path: '#a29899' row_index: { fg: '#8ba089' attr: 'b' } record: '#a29899' list: '#a29899' diff --git a/themes/nu-themes/tempus-fugit.nu b/themes/nu-themes/tempus-fugit.nu index 06359dd..24bda58 100644 --- a/themes/nu-themes/tempus-fugit.nu +++ b/themes/nu-themes/tempus-fugit.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f2ebe9' nothing: '#f2ebe9' binary: '#f2ebe9' - cellpath: '#f2ebe9' + cell-path: '#f2ebe9' row_index: { fg: '#357200' attr: 'b' } record: '#f2ebe9' list: '#f2ebe9' diff --git a/themes/nu-themes/tempus-future.nu b/themes/nu-themes/tempus-future.nu index 0a736f6..71ffa3e 100644 --- a/themes/nu-themes/tempus-future.nu +++ b/themes/nu-themes/tempus-future.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a59ebd' nothing: '#a59ebd' binary: '#a59ebd' - cellpath: '#a59ebd' + cell-path: '#a59ebd' row_index: { fg: '#6ab539' attr: 'b' } record: '#a59ebd' list: '#a59ebd' diff --git a/themes/nu-themes/tempus-night.nu b/themes/nu-themes/tempus-night.nu index 1f6d0b0..e490c0e 100644 --- a/themes/nu-themes/tempus-night.nu +++ b/themes/nu-themes/tempus-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c4bdaf' nothing: '#c4bdaf' binary: '#c4bdaf' - cellpath: '#c4bdaf' + cell-path: '#c4bdaf' row_index: { fg: '#52ba40' attr: 'b' } record: '#c4bdaf' list: '#c4bdaf' diff --git a/themes/nu-themes/tempus-past.nu b/themes/nu-themes/tempus-past.nu index f93510e..96180e6 100644 --- a/themes/nu-themes/tempus-past.nu +++ b/themes/nu-themes/tempus-past.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ece6de' nothing: '#ece6de' binary: '#ece6de' - cellpath: '#ece6de' + cell-path: '#ece6de' row_index: { fg: '#0a7040' attr: 'b' } record: '#ece6de' list: '#ece6de' diff --git a/themes/nu-themes/tempus-rift.nu b/themes/nu-themes/tempus-rift.nu index b80f517..2f58ddf 100644 --- a/themes/nu-themes/tempus-rift.nu +++ b/themes/nu-themes/tempus-rift.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ab9aa9' nothing: '#ab9aa9' binary: '#ab9aa9' - cellpath: '#ab9aa9' + cell-path: '#ab9aa9' row_index: { fg: '#34b534' attr: 'b' } record: '#ab9aa9' list: '#ab9aa9' diff --git a/themes/nu-themes/tempus-spring.nu b/themes/nu-themes/tempus-spring.nu index a8ba5ec..5d3e644 100644 --- a/themes/nu-themes/tempus-spring.nu +++ b/themes/nu-themes/tempus-spring.nu @@ -37,7 +37,7 @@ export def main [] { string: '#96aca7' nothing: '#96aca7' binary: '#96aca7' - cellpath: '#96aca7' + cell-path: '#96aca7' row_index: { fg: '#5cbc4d' attr: 'b' } record: '#96aca7' list: '#96aca7' diff --git a/themes/nu-themes/tempus-summer.nu b/themes/nu-themes/tempus-summer.nu index 371a8a3..f2e2997 100644 --- a/themes/nu-themes/tempus-summer.nu +++ b/themes/nu-themes/tempus-summer.nu @@ -37,7 +37,7 @@ export def main [] { string: '#919ab9' nothing: '#919ab9' binary: '#919ab9' - cellpath: '#919ab9' + cell-path: '#919ab9' row_index: { fg: '#4eac6d' attr: 'b' } record: '#919ab9' list: '#919ab9' diff --git a/themes/nu-themes/tempus-tempest.nu b/themes/nu-themes/tempus-tempest.nu index 84efbff..9e0d984 100644 --- a/themes/nu-themes/tempus-tempest.nu +++ b/themes/nu-themes/tempus-tempest.nu @@ -37,7 +37,7 @@ export def main [] { string: '#b0c8ca' nothing: '#b0c8ca' binary: '#b0c8ca' - cellpath: '#b0c8ca' + cell-path: '#b0c8ca' row_index: { fg: '#7ad67a' attr: 'b' } record: '#b0c8ca' list: '#b0c8ca' diff --git a/themes/nu-themes/tempus-totus.nu b/themes/nu-themes/tempus-totus.nu index a29a916..351bc51 100644 --- a/themes/nu-themes/tempus-totus.nu +++ b/themes/nu-themes/tempus-totus.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f3f1f3' nothing: '#f3f1f3' binary: '#f3f1f3' - cellpath: '#f3f1f3' + cell-path: '#f3f1f3' row_index: { fg: '#005f26' attr: 'b' } record: '#f3f1f3' list: '#f3f1f3' diff --git a/themes/nu-themes/tempus-warp.nu b/themes/nu-themes/tempus-warp.nu index 5dc9319..8e32c79 100644 --- a/themes/nu-themes/tempus-warp.nu +++ b/themes/nu-themes/tempus-warp.nu @@ -37,7 +37,7 @@ export def main [] { string: '#928080' nothing: '#928080' binary: '#928080' - cellpath: '#928080' + cell-path: '#928080' row_index: { fg: '#139913' attr: 'b' } record: '#928080' list: '#928080' diff --git a/themes/nu-themes/tempus-winter.nu b/themes/nu-themes/tempus-winter.nu index 8638cb0..5625653 100644 --- a/themes/nu-themes/tempus-winter.nu +++ b/themes/nu-themes/tempus-winter.nu @@ -37,7 +37,7 @@ export def main [] { string: '#909294' nothing: '#909294' binary: '#909294' - cellpath: '#909294' + cell-path: '#909294' row_index: { fg: '#49a61d' attr: 'b' } record: '#909294' list: '#909294' diff --git a/themes/nu-themes/tender.nu b/themes/nu-themes/tender.nu index 99bb2fd..5bc072b 100644 --- a/themes/nu-themes/tender.nu +++ b/themes/nu-themes/tender.nu @@ -37,7 +37,7 @@ export def main [] { string: '#eeeeee' nothing: '#eeeeee' binary: '#eeeeee' - cellpath: '#eeeeee' + cell-path: '#eeeeee' row_index: { fg: '#c9d05c' attr: 'b' } record: '#eeeeee' list: '#eeeeee' diff --git a/themes/nu-themes/terminal-basic.nu b/themes/nu-themes/terminal-basic.nu index c3f4466..4ed6759 100644 --- a/themes/nu-themes/terminal-basic.nu +++ b/themes/nu-themes/terminal-basic.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bfbfbf' nothing: '#bfbfbf' binary: '#bfbfbf' - cellpath: '#bfbfbf' + cell-path: '#bfbfbf' row_index: { fg: '#00a600' attr: 'b' } record: '#bfbfbf' list: '#bfbfbf' diff --git a/themes/nu-themes/terminix-dark.nu b/themes/nu-themes/terminix-dark.nu index a1dfe55..b8d6e29 100644 --- a/themes/nu-themes/terminix-dark.nu +++ b/themes/nu-themes/terminix-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#777777' nothing: '#777777' binary: '#777777' - cellpath: '#777777' + cell-path: '#777777' row_index: { fg: '#a1b56c' attr: 'b' } record: '#777777' list: '#777777' diff --git a/themes/nu-themes/thayer-bright.nu b/themes/nu-themes/thayer-bright.nu index 9262bfc..49c659e 100644 --- a/themes/nu-themes/thayer-bright.nu +++ b/themes/nu-themes/thayer-bright.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ccccc6' nothing: '#ccccc6' binary: '#ccccc6' - cellpath: '#ccccc6' + cell-path: '#ccccc6' row_index: { fg: '#4df840' attr: 'b' } record: '#ccccc6' list: '#ccccc6' diff --git a/themes/nu-themes/the-hulk.nu b/themes/nu-themes/the-hulk.nu index b68cc86..d93df44 100644 --- a/themes/nu-themes/the-hulk.nu +++ b/themes/nu-themes/the-hulk.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d8d8d0' nothing: '#d8d8d0' binary: '#d8d8d0' - cellpath: '#d8d8d0' + cell-path: '#d8d8d0' row_index: { fg: '#13ce2f' attr: 'b' } record: '#d8d8d0' list: '#d8d8d0' diff --git a/themes/nu-themes/tin.nu b/themes/nu-themes/tin.nu index a15f05a..1836708 100644 --- a/themes/nu-themes/tin.nu +++ b/themes/nu-themes/tin.nu @@ -37,7 +37,7 @@ export def main [] { string: '#ffffff' nothing: '#ffffff' binary: '#ffffff' - cellpath: '#ffffff' + cell-path: '#ffffff' row_index: { fg: '#4e8d53' attr: 'b' } record: '#ffffff' list: '#ffffff' diff --git a/themes/nu-themes/tokyo-day.nu b/themes/nu-themes/tokyo-day.nu index 4168a95..73fff7d 100644 --- a/themes/nu-themes/tokyo-day.nu +++ b/themes/nu-themes/tokyo-day.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6172b0' nothing: '#6172b0' binary: '#6172b0' - cellpath: '#6172b0' + cell-path: '#6172b0' row_index: { fg: '#587539' attr: 'b' } record: '#6172b0' list: '#6172b0' diff --git a/themes/nu-themes/tokyo-moon.nu b/themes/nu-themes/tokyo-moon.nu index f8a7a55..964fd95 100644 --- a/themes/nu-themes/tokyo-moon.nu +++ b/themes/nu-themes/tokyo-moon.nu @@ -1,86 +1,88 @@ # Retrieve the theme settings -export def main [] { return { - separator: "#a9b1d6" - leading_trailing_space_bg: { attr: "n" } - header: { fg: "#9ece6a" attr: "b" } - empty: "#7aa2f7" - bool: {|| if $in { "#7dcfff" } else { "light_gray" } } - int: "#a9b1d6" - filesize: {|e| - if $e == 0b { - "#a9b1d6" - } else if $e < 1mb { - "#7dcfff" - } else {{ fg: "#7aa2f7" }} - } - duration: "#a9b1d6" - date: {|| (date now) - $in | - if $in < 1hr { - { fg: "#f7768e" attr: "b" } - } else if $in < 6hr { - "#f7768e" - } else if $in < 1day { - "#e0af68" - } else if $in < 3day { - "#9ece6a" - } else if $in < 1wk { - { fg: "#9ece6a" attr: "b" } - } else if $in < 6wk { - "#7dcfff" - } else if $in < 52wk { - "#7aa2f7" - } else { "dark_gray" } - } - range: "#a9b1d6" - float: "#a9b1d6" - string: "#a9b1d6" - nothing: "#a9b1d6" - binary: "#a9b1d6" - cellpath: "#a9b1d6" - row_index: { fg: "#9ece6a" attr: "b" } - record: "#a9b1d6" - list: "#a9b1d6" - block: "#a9b1d6" - hints: "dark_gray" - search_result: { fg: "#f7768e" bg: "#a9b1d6" } +export def main [] { + return { + separator: "#a9b1d6" + leading_trailing_space_bg: { attr: "n" } + header: { fg: "#9ece6a" attr: "b" } + empty: "#7aa2f7" + bool: {|| if $in { "#7dcfff" } else { "light_gray" } } + int: "#a9b1d6" + filesize: {|e| + if $e == 0b { + "#a9b1d6" + } else if $e < 1mb { + "#7dcfff" + } else {{ fg: "#7aa2f7" }} + } + duration: "#a9b1d6" + date: {|| (date now) - $in | + if $in < 1hr { + { fg: "#f7768e" attr: "b" } + } else if $in < 6hr { + "#f7768e" + } else if $in < 1day { + "#e0af68" + } else if $in < 3day { + "#9ece6a" + } else if $in < 1wk { + { fg: "#9ece6a" attr: "b" } + } else if $in < 6wk { + "#7dcfff" + } else if $in < 52wk { + "#7aa2f7" + } else { "dark_gray" } + } + range: "#a9b1d6" + float: "#a9b1d6" + string: "#a9b1d6" + nothing: "#a9b1d6" + binary: "#a9b1d6" + cell-path: "#a9b1d6" + row_index: { fg: "#9ece6a" attr: "b" } + record: "#a9b1d6" + list: "#a9b1d6" + block: "#a9b1d6" + hints: "dark_gray" + search_result: { fg: "#f7768e" bg: "#a9b1d6" } - shape_and: { fg: "#bb9af7" attr: "b" } - shape_binary: { fg: "#bb9af7" attr: "b" } - shape_block: { fg: "#7aa2f7" attr: "b" } - shape_bool: "#7dcfff" - shape_custom: "#9ece6a" - shape_datetime: { fg: "#7dcfff" attr: "b" } - shape_directory: "#7dcfff" - shape_external: "#7dcfff" - shape_externalarg: { fg: "#9ece6a" attr: "b" } - shape_filepath: "#7dcfff" - shape_flag: { fg: "#7aa2f7" attr: "b" } - shape_float: { fg: "#bb9af7" attr: "b" } - shape_garbage: { fg: "#FFFFFF" bg: "#FF0000" attr: "b" } - shape_globpattern: { fg: "#7dcfff" attr: "b" } - shape_int: { fg: "#bb9af7" attr: "b" } - shape_internalcall: { fg: "#7dcfff" attr: "b" } - shape_list: { fg: "#7dcfff" attr: "b" } - shape_literal: "#7aa2f7" - shape_match_pattern: "#9ece6a" - shape_matching_brackets: { attr: "u" } - shape_nothing: "#7dcfff" - shape_operator: "#e0af68" - shape_or: { fg: "#bb9af7" attr: "b" } - shape_pipe: { fg: "#bb9af7" attr: "b" } - shape_range: { fg: "#e0af68" attr: "b" } - shape_record: { fg: "#7dcfff" attr: "b" } - shape_redirection: { fg: "#bb9af7" attr: "b" } - shape_signature: { fg: "#9ece6a" attr: "b" } - shape_string: "#9ece6a" - shape_string_interpolation: { fg: "#7dcfff" attr: "b" } - shape_table: { fg: "#7aa2f7" attr: "b" } - shape_variable: "#bb9af7" + shape_and: { fg: "#bb9af7" attr: "b" } + shape_binary: { fg: "#bb9af7" attr: "b" } + shape_block: { fg: "#7aa2f7" attr: "b" } + shape_bool: "#7dcfff" + shape_custom: "#9ece6a" + shape_datetime: { fg: "#7dcfff" attr: "b" } + shape_directory: "#7dcfff" + shape_external: "#7dcfff" + shape_externalarg: { fg: "#9ece6a" attr: "b" } + shape_filepath: "#7dcfff" + shape_flag: { fg: "#7aa2f7" attr: "b" } + shape_float: { fg: "#bb9af7" attr: "b" } + shape_garbage: { fg: "#FFFFFF" bg: "#FF0000" attr: "b" } + shape_globpattern: { fg: "#7dcfff" attr: "b" } + shape_int: { fg: "#bb9af7" attr: "b" } + shape_internalcall: { fg: "#7dcfff" attr: "b" } + shape_list: { fg: "#7dcfff" attr: "b" } + shape_literal: "#7aa2f7" + shape_match_pattern: "#9ece6a" + shape_matching_brackets: { attr: "u" } + shape_nothing: "#7dcfff" + shape_operator: "#e0af68" + shape_or: { fg: "#bb9af7" attr: "b" } + shape_pipe: { fg: "#bb9af7" attr: "b" } + shape_range: { fg: "#e0af68" attr: "b" } + shape_record: { fg: "#7dcfff" attr: "b" } + shape_redirection: { fg: "#bb9af7" attr: "b" } + shape_signature: { fg: "#9ece6a" attr: "b" } + shape_string: "#9ece6a" + shape_string_interpolation: { fg: "#7dcfff" attr: "b" } + shape_table: { fg: "#7aa2f7" attr: "b" } + shape_variable: "#bb9af7" - background: "#1a1b26" - foreground: "#c0caf5" - cursor: "#c0caf5" -}} + background: "#1a1b26" + foreground: "#c0caf5" + cursor: "#c0caf5" + } +} # Update the Nushell configuration export def --env "set color_config" [] { diff --git a/themes/nu-themes/tokyo-night.nu b/themes/nu-themes/tokyo-night.nu index 7bd97e6..9f2faf7 100644 --- a/themes/nu-themes/tokyo-night.nu +++ b/themes/nu-themes/tokyo-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a9b1d6' nothing: '#a9b1d6' binary: '#a9b1d6' - cellpath: '#a9b1d6' + cell-path: '#a9b1d6' row_index: { fg: '#9ece6a' attr: 'b' } record: '#a9b1d6' list: '#a9b1d6' diff --git a/themes/nu-themes/tokyo-storm.nu b/themes/nu-themes/tokyo-storm.nu index 02bfe1f..958fbee 100644 --- a/themes/nu-themes/tokyo-storm.nu +++ b/themes/nu-themes/tokyo-storm.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a9b1d6' nothing: '#a9b1d6' binary: '#a9b1d6' - cellpath: '#a9b1d6' + cell-path: '#a9b1d6' row_index: { fg: '#9ece6a' attr: 'b' } record: '#a9b1d6' list: '#a9b1d6' diff --git a/themes/nu-themes/tomorrow-night-blue.nu b/themes/nu-themes/tomorrow-night-blue.nu index 04d412e..ef2813d 100644 --- a/themes/nu-themes/tomorrow-night-blue.nu +++ b/themes/nu-themes/tomorrow-night-blue.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fffefe' nothing: '#fffefe' binary: '#fffefe' - cellpath: '#fffefe' + cell-path: '#fffefe' row_index: { fg: '#d1f1a9' attr: 'b' } record: '#fffefe' list: '#fffefe' diff --git a/themes/nu-themes/tomorrow-night-bright.nu b/themes/nu-themes/tomorrow-night-bright.nu index 607a09b..5fb6d70 100644 --- a/themes/nu-themes/tomorrow-night-bright.nu +++ b/themes/nu-themes/tomorrow-night-bright.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fffefe' nothing: '#fffefe' binary: '#fffefe' - cellpath: '#fffefe' + cell-path: '#fffefe' row_index: { fg: '#b9ca49' attr: 'b' } record: '#fffefe' list: '#fffefe' diff --git a/themes/nu-themes/tomorrow-night-eighties.nu b/themes/nu-themes/tomorrow-night-eighties.nu index fcef9d7..321b030 100644 --- a/themes/nu-themes/tomorrow-night-eighties.nu +++ b/themes/nu-themes/tomorrow-night-eighties.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#99cc99' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/tomorrow-night.nu b/themes/nu-themes/tomorrow-night.nu index 4509ecb..c4531a1 100644 --- a/themes/nu-themes/tomorrow-night.nu +++ b/themes/nu-themes/tomorrow-night.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c5c8c6' nothing: '#c5c8c6' binary: '#c5c8c6' - cellpath: '#c5c8c6' + cell-path: '#c5c8c6' row_index: { fg: '#b5bd68' attr: 'b' } record: '#c5c8c6' list: '#c5c8c6' diff --git a/themes/nu-themes/tomorrow.nu b/themes/nu-themes/tomorrow.nu index d073e6a..427544a 100644 --- a/themes/nu-themes/tomorrow.nu +++ b/themes/nu-themes/tomorrow.nu @@ -37,7 +37,7 @@ export def main [] { string: '#4d4d4c' nothing: '#4d4d4c' binary: '#4d4d4c' - cellpath: '#4d4d4c' + cell-path: '#4d4d4c' row_index: { fg: '#718c00' attr: 'b' } record: '#4d4d4c' list: '#4d4d4c' diff --git a/themes/nu-themes/toy-chest.nu b/themes/nu-themes/toy-chest.nu index cf4fdae..1f8588b 100644 --- a/themes/nu-themes/toy-chest.nu +++ b/themes/nu-themes/toy-chest.nu @@ -37,7 +37,7 @@ export def main [] { string: '#23d183' nothing: '#23d183' binary: '#23d183' - cellpath: '#23d183' + cell-path: '#23d183' row_index: { fg: '#1a9172' attr: 'b' } record: '#23d183' list: '#23d183' diff --git a/themes/nu-themes/treehouse.nu b/themes/nu-themes/treehouse.nu index ab0ede1..cafafd5 100644 --- a/themes/nu-themes/treehouse.nu +++ b/themes/nu-themes/treehouse.nu @@ -37,7 +37,7 @@ export def main [] { string: '#786b53' nothing: '#786b53' binary: '#786b53' - cellpath: '#786b53' + cell-path: '#786b53' row_index: { fg: '#44a900' attr: 'b' } record: '#786b53' list: '#786b53' diff --git a/themes/nu-themes/tube.nu b/themes/nu-themes/tube.nu index 03c0ad9..ffdab24 100644 --- a/themes/nu-themes/tube.nu +++ b/themes/nu-themes/tube.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d9d8d8' nothing: '#d9d8d8' binary: '#d9d8d8' - cellpath: '#d9d8d8' + cell-path: '#d9d8d8' row_index: { fg: '#00853e' attr: 'b' } record: '#d9d8d8' list: '#d9d8d8' diff --git a/themes/nu-themes/twilight.nu b/themes/nu-themes/twilight.nu index 591c954..b2f0b59 100644 --- a/themes/nu-themes/twilight.nu +++ b/themes/nu-themes/twilight.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a7a7a7' nothing: '#a7a7a7' binary: '#a7a7a7' - cellpath: '#a7a7a7' + cell-path: '#a7a7a7' row_index: { fg: '#8f9d6a' attr: 'b' } record: '#a7a7a7' list: '#a7a7a7' diff --git a/themes/nu-themes/two-firewatch.nu b/themes/nu-themes/two-firewatch.nu index 9ecf2fd..758ebcd 100644 --- a/themes/nu-themes/two-firewatch.nu +++ b/themes/nu-themes/two-firewatch.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dcdfe4' nothing: '#dcdfe4' binary: '#dcdfe4' - cellpath: '#dcdfe4' + cell-path: '#dcdfe4' row_index: { fg: '#98c379' attr: 'b' } record: '#dcdfe4' list: '#dcdfe4' diff --git a/themes/nu-themes/unikitty-dark.nu b/themes/nu-themes/unikitty-dark.nu index a6f28ad..17eb32f 100644 --- a/themes/nu-themes/unikitty-dark.nu +++ b/themes/nu-themes/unikitty-dark.nu @@ -37,7 +37,7 @@ export def main [] { string: '#bcbabe' nothing: '#bcbabe' binary: '#bcbabe' - cellpath: '#bcbabe' + cell-path: '#bcbabe' row_index: { fg: '#17ad98' attr: 'b' } record: '#bcbabe' list: '#bcbabe' diff --git a/themes/nu-themes/unikitty-light.nu b/themes/nu-themes/unikitty-light.nu index e3cd596..6087db4 100644 --- a/themes/nu-themes/unikitty-light.nu +++ b/themes/nu-themes/unikitty-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#6c696e' nothing: '#6c696e' binary: '#6c696e' - cellpath: '#6c696e' + cell-path: '#6c696e' row_index: { fg: '#17ad98' attr: 'b' } record: '#6c696e' list: '#6c696e' diff --git a/themes/nu-themes/ura.nu b/themes/nu-themes/ura.nu index b64f667..e631c60 100644 --- a/themes/nu-themes/ura.nu +++ b/themes/nu-themes/ura.nu @@ -37,7 +37,7 @@ export def main [] { string: '#808080' nothing: '#808080' binary: '#808080' - cellpath: '#808080' + cell-path: '#808080' row_index: { fg: '#6fc21b' attr: 'b' } record: '#808080' list: '#808080' diff --git a/themes/nu-themes/urple.nu b/themes/nu-themes/urple.nu index a6a4de2..eaa3e06 100644 --- a/themes/nu-themes/urple.nu +++ b/themes/nu-themes/urple.nu @@ -37,7 +37,7 @@ export def main [] { string: '#87799c' nothing: '#87799c' binary: '#87799c' - cellpath: '#87799c' + cell-path: '#87799c' row_index: { fg: '#37a415' attr: 'b' } record: '#87799c' list: '#87799c' diff --git a/themes/nu-themes/vag.nu b/themes/nu-themes/vag.nu index 809bf32..5cf979a 100644 --- a/themes/nu-themes/vag.nu +++ b/themes/nu-themes/vag.nu @@ -37,7 +37,7 @@ export def main [] { string: '#8a8a8a' nothing: '#8a8a8a' binary: '#8a8a8a' - cellpath: '#8a8a8a' + cell-path: '#8a8a8a' row_index: { fg: '#39a871' attr: 'b' } record: '#8a8a8a' list: '#8a8a8a' diff --git a/themes/nu-themes/vaughn.nu b/themes/nu-themes/vaughn.nu index 5fb1151..f656f0e 100644 --- a/themes/nu-themes/vaughn.nu +++ b/themes/nu-themes/vaughn.nu @@ -37,7 +37,7 @@ export def main [] { string: '#709080' nothing: '#709080' binary: '#709080' - cellpath: '#709080' + cell-path: '#709080' row_index: { fg: '#60b48a' attr: 'b' } record: '#709080' list: '#709080' diff --git a/themes/nu-themes/vibrant-ink.nu b/themes/nu-themes/vibrant-ink.nu index 4d21595..24dc7ea 100644 --- a/themes/nu-themes/vibrant-ink.nu +++ b/themes/nu-themes/vibrant-ink.nu @@ -37,7 +37,7 @@ export def main [] { string: '#f5f5f5' nothing: '#f5f5f5' binary: '#f5f5f5' - cellpath: '#f5f5f5' + cell-path: '#f5f5f5' row_index: { fg: '#ccff04' attr: 'b' } record: '#f5f5f5' list: '#f5f5f5' diff --git a/themes/nu-themes/vs-code-dark-plus.nu b/themes/nu-themes/vs-code-dark-plus.nu index 17cac63..8c3c126 100644 --- a/themes/nu-themes/vs-code-dark-plus.nu +++ b/themes/nu-themes/vs-code-dark-plus.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c3dde1' nothing: '#c3dde1' binary: '#c3dde1' - cellpath: '#c3dde1' + cell-path: '#c3dde1' row_index: { fg: '#39e9a8' attr: 'b' } record: '#c3dde1' list: '#c3dde1' diff --git a/themes/nu-themes/vulcan.nu b/themes/nu-themes/vulcan.nu index b604fed..ec2589e 100644 --- a/themes/nu-themes/vulcan.nu +++ b/themes/nu-themes/vulcan.nu @@ -37,7 +37,7 @@ export def main [] { string: '#5b778c' nothing: '#5b778c' binary: '#5b778c' - cellpath: '#5b778c' + cell-path: '#5b778c' row_index: { fg: '#977d7c' attr: 'b' } record: '#5b778c' list: '#5b778c' diff --git a/themes/nu-themes/warm-neon.nu b/themes/nu-themes/warm-neon.nu index 574f679..57b0b65 100644 --- a/themes/nu-themes/warm-neon.nu +++ b/themes/nu-themes/warm-neon.nu @@ -37,7 +37,7 @@ export def main [] { string: '#d0b8a3' nothing: '#d0b8a3' binary: '#d0b8a3' - cellpath: '#d0b8a3' + cell-path: '#d0b8a3' row_index: { fg: '#39b13a' attr: 'b' } record: '#d0b8a3' list: '#d0b8a3' diff --git a/themes/nu-themes/wez.nu b/themes/nu-themes/wez.nu index 12afa21..eb7d181 100644 --- a/themes/nu-themes/wez.nu +++ b/themes/nu-themes/wez.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#55cc55' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/wild-cherry.nu b/themes/nu-themes/wild-cherry.nu index 467a4b9..ac3c643 100644 --- a/themes/nu-themes/wild-cherry.nu +++ b/themes/nu-themes/wild-cherry.nu @@ -37,7 +37,7 @@ export def main [] { string: '#fff8de' nothing: '#fff8de' binary: '#fff8de' - cellpath: '#fff8de' + cell-path: '#fff8de' row_index: { fg: '#2ab250' attr: 'b' } record: '#fff8de' list: '#fff8de' diff --git a/themes/nu-themes/windows-10-light.nu b/themes/nu-themes/windows-10-light.nu index f74e5c3..6c8d764 100644 --- a/themes/nu-themes/windows-10-light.nu +++ b/themes/nu-themes/windows-10-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#767676' nothing: '#767676' binary: '#767676' - cellpath: '#767676' + cell-path: '#767676' row_index: { fg: '#13a10e' attr: 'b' } record: '#767676' list: '#767676' diff --git a/themes/nu-themes/windows-10.nu b/themes/nu-themes/windows-10.nu index 9887497..fd8d61d 100644 --- a/themes/nu-themes/windows-10.nu +++ b/themes/nu-themes/windows-10.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cccccc' nothing: '#cccccc' binary: '#cccccc' - cellpath: '#cccccc' + cell-path: '#cccccc' row_index: { fg: '#16c60c' attr: 'b' } record: '#cccccc' list: '#cccccc' diff --git a/themes/nu-themes/windows-95-light.nu b/themes/nu-themes/windows-95-light.nu index 8f7be96..e3cb431 100644 --- a/themes/nu-themes/windows-95-light.nu +++ b/themes/nu-themes/windows-95-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#545454' nothing: '#545454' binary: '#545454' - cellpath: '#545454' + cell-path: '#545454' row_index: { fg: '#00a800' attr: 'b' } record: '#545454' list: '#545454' diff --git a/themes/nu-themes/windows-95.nu b/themes/nu-themes/windows-95.nu index 632411a..947f7fa 100644 --- a/themes/nu-themes/windows-95.nu +++ b/themes/nu-themes/windows-95.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a8a8a8' nothing: '#a8a8a8' binary: '#a8a8a8' - cellpath: '#a8a8a8' + cell-path: '#a8a8a8' row_index: { fg: '#54fc54' attr: 'b' } record: '#a8a8a8' list: '#a8a8a8' diff --git a/themes/nu-themes/windows-highcontrast-light.nu b/themes/nu-themes/windows-highcontrast-light.nu index 98e4dae..731ae52 100644 --- a/themes/nu-themes/windows-highcontrast-light.nu +++ b/themes/nu-themes/windows-highcontrast-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#545454' nothing: '#545454' binary: '#545454' - cellpath: '#545454' + cell-path: '#545454' row_index: { fg: '#008000' attr: 'b' } record: '#545454' list: '#545454' diff --git a/themes/nu-themes/windows-highcontrast.nu b/themes/nu-themes/windows-highcontrast.nu index 915ef4f..ce7df53 100644 --- a/themes/nu-themes/windows-highcontrast.nu +++ b/themes/nu-themes/windows-highcontrast.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c0c0c0' nothing: '#c0c0c0' binary: '#c0c0c0' - cellpath: '#c0c0c0' + cell-path: '#c0c0c0' row_index: { fg: '#54fc54' attr: 'b' } record: '#c0c0c0' list: '#c0c0c0' diff --git a/themes/nu-themes/windows-nt-light.nu b/themes/nu-themes/windows-nt-light.nu index 196c64c..1305c1e 100644 --- a/themes/nu-themes/windows-nt-light.nu +++ b/themes/nu-themes/windows-nt-light.nu @@ -37,7 +37,7 @@ export def main [] { string: '#808080' nothing: '#808080' binary: '#808080' - cellpath: '#808080' + cell-path: '#808080' row_index: { fg: '#008000' attr: 'b' } record: '#808080' list: '#808080' diff --git a/themes/nu-themes/windows-nt.nu b/themes/nu-themes/windows-nt.nu index 039b740..d5e1d30 100644 --- a/themes/nu-themes/windows-nt.nu +++ b/themes/nu-themes/windows-nt.nu @@ -37,7 +37,7 @@ export def main [] { string: '#c0c0c0' nothing: '#c0c0c0' binary: '#c0c0c0' - cellpath: '#c0c0c0' + cell-path: '#c0c0c0' row_index: { fg: '#00ff00' attr: 'b' } record: '#c0c0c0' list: '#c0c0c0' diff --git a/themes/nu-themes/wombat.nu b/themes/nu-themes/wombat.nu index f43d0d6..571edd1 100644 --- a/themes/nu-themes/wombat.nu +++ b/themes/nu-themes/wombat.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dedacf' nothing: '#dedacf' binary: '#dedacf' - cellpath: '#dedacf' + cell-path: '#dedacf' row_index: { fg: '#b1e969' attr: 'b' } record: '#dedacf' list: '#dedacf' diff --git a/themes/nu-themes/woodland.nu b/themes/nu-themes/woodland.nu index 74e3e05..79c9f37 100644 --- a/themes/nu-themes/woodland.nu +++ b/themes/nu-themes/woodland.nu @@ -37,7 +37,7 @@ export def main [] { string: '#cabcb1' nothing: '#cabcb1' binary: '#cabcb1' - cellpath: '#cabcb1' + cell-path: '#cabcb1' row_index: { fg: '#b7ba53' attr: 'b' } record: '#cabcb1' list: '#cabcb1' diff --git a/themes/nu-themes/wryan.nu b/themes/nu-themes/wryan.nu index bb54ef3..e326add 100644 --- a/themes/nu-themes/wryan.nu +++ b/themes/nu-themes/wryan.nu @@ -37,7 +37,7 @@ export def main [] { string: '#899ca1' nothing: '#899ca1' binary: '#899ca1' - cellpath: '#899ca1' + cell-path: '#899ca1' row_index: { fg: '#287373' attr: 'b' } record: '#899ca1' list: '#899ca1' diff --git a/themes/nu-themes/xcode-dusk.nu b/themes/nu-themes/xcode-dusk.nu index 5cc6146..ee700d0 100644 --- a/themes/nu-themes/xcode-dusk.nu +++ b/themes/nu-themes/xcode-dusk.nu @@ -37,7 +37,7 @@ export def main [] { string: '#939599' nothing: '#939599' binary: '#939599' - cellpath: '#939599' + cell-path: '#939599' row_index: { fg: '#df0002' attr: 'b' } record: '#939599' list: '#939599' diff --git a/themes/nu-themes/yachiyo.nu b/themes/nu-themes/yachiyo.nu index 9d84496..3830505 100644 --- a/themes/nu-themes/yachiyo.nu +++ b/themes/nu-themes/yachiyo.nu @@ -37,7 +37,7 @@ export def main [] { string: '#a0be99' nothing: '#a0be99' binary: '#a0be99' - cellpath: '#a0be99' + cell-path: '#a0be99' row_index: { fg: '#b9a9d7' attr: 'b' } record: '#a0be99' list: '#a0be99' diff --git a/themes/nu-themes/zenburn.nu b/themes/nu-themes/zenburn.nu index fd4aa41..3495b87 100644 --- a/themes/nu-themes/zenburn.nu +++ b/themes/nu-themes/zenburn.nu @@ -37,7 +37,7 @@ export def main [] { string: '#dcdccc' nothing: '#dcdccc' binary: '#dcdccc' - cellpath: '#dcdccc' + cell-path: '#dcdccc' row_index: { fg: '#5f7f5f' attr: 'b' } record: '#dcdccc' list: '#dcdccc' diff --git a/themes/nupm.nuon b/themes/nupm.nuon index cc79d4e..eb2865b 100644 --- a/themes/nupm.nuon +++ b/themes/nupm.nuon @@ -3,6 +3,6 @@ description: "Officially-supported themes for Nushell" documentation: "https://github.com/nushell/nu_scripts/blob/main/README.md" license: "https://github.com/nushell/nu_scripts/blob/main/LICENSE" - version: 0.2.1 + version: 0.3.0 type: "module" } diff --git a/themes/screenshots/3024-day.png b/themes/screenshots/3024-day.png index 9867d16..2738c7a 100644 Binary files a/themes/screenshots/3024-day.png and b/themes/screenshots/3024-day.png differ diff --git a/themes/screenshots/3024-night.png b/themes/screenshots/3024-night.png index 25692da..cf58d22 100644 Binary files a/themes/screenshots/3024-night.png and b/themes/screenshots/3024-night.png differ diff --git a/themes/screenshots/3024.png b/themes/screenshots/3024.png new file mode 100644 index 0000000..ed00d25 Binary files /dev/null and b/themes/screenshots/3024.png differ diff --git a/themes/screenshots/3024r.png b/themes/screenshots/3024r.png deleted file mode 100644 index b611345..0000000 Binary files a/themes/screenshots/3024r.png and /dev/null differ diff --git a/themes/screenshots/README.md b/themes/screenshots/README.md index 47c999b..531b4c5 100644 --- a/themes/screenshots/README.md +++ b/themes/screenshots/README.md @@ -1,4 +1,4 @@ -# Screenshots for Themes folder +# Screenshots of Theme Previews ### Theme name: '3024-day' ![3024-day](3024-day.png) @@ -6,8 +6,8 @@ ### Theme name: '3024-night' ![3024-night](3024-night.png) -### Theme name: '3024r' -![3024r](3024r.png) +### Theme name: '3024' +![3024](3024.png) ### Theme name: 'abyss' ![abyss](abyss.png) @@ -216,6 +216,9 @@ ### Theme name: 'cai' ![cai](cai.png) +### Theme name: 'catppuccin-latte' +![catppuccin-latte](catppuccin-latte.png) + ### Theme name: 'catppuccin-mocha' ![catppuccin-mocha](catppuccin-mocha.png) @@ -1233,6 +1236,9 @@ ### Theme name: 'tokyo-day' ![tokyo-day](tokyo-day.png) +### Theme name: 'tokyo-moon' +![tokyo-moon](tokyo-moon.png) + ### Theme name: 'tokyo-night' ![tokyo-night](tokyo-night.png) @@ -1346,3 +1352,4 @@ ### Theme name: 'zenburn' ![zenburn](zenburn.png) + diff --git a/themes/screenshots/abyss.png b/themes/screenshots/abyss.png index dec57e0..df46980 100644 Binary files a/themes/screenshots/abyss.png and b/themes/screenshots/abyss.png differ diff --git a/themes/screenshots/aci.png b/themes/screenshots/aci.png index 35bf38c..5688ac5 100644 Binary files a/themes/screenshots/aci.png and b/themes/screenshots/aci.png differ diff --git a/themes/screenshots/aco.png b/themes/screenshots/aco.png index 6298f6a..c4d5442 100644 Binary files a/themes/screenshots/aco.png and b/themes/screenshots/aco.png differ diff --git a/themes/screenshots/adventuretime.png b/themes/screenshots/adventuretime.png index 7da1640..435129c 100644 Binary files a/themes/screenshots/adventuretime.png and b/themes/screenshots/adventuretime.png differ diff --git a/themes/screenshots/afterglow.png b/themes/screenshots/afterglow.png index 557f162..4e908b5 100644 Binary files a/themes/screenshots/afterglow.png and b/themes/screenshots/afterglow.png differ diff --git a/themes/screenshots/alien-blood.png b/themes/screenshots/alien-blood.png index 4197fd3..f8863e3 100644 Binary files a/themes/screenshots/alien-blood.png and b/themes/screenshots/alien-blood.png differ diff --git a/themes/screenshots/alucard.png b/themes/screenshots/alucard.png index 210b836..e9285c7 100644 Binary files a/themes/screenshots/alucard.png and b/themes/screenshots/alucard.png differ diff --git a/themes/screenshots/amora.png b/themes/screenshots/amora.png index dcaaab7..43bf70b 100644 Binary files a/themes/screenshots/amora.png and b/themes/screenshots/amora.png differ diff --git a/themes/screenshots/apathy.png b/themes/screenshots/apathy.png index 0c74482..6ed548b 100644 Binary files a/themes/screenshots/apathy.png and b/themes/screenshots/apathy.png differ diff --git a/themes/screenshots/apprentice.png b/themes/screenshots/apprentice.png index 089f7af..6f57f80 100644 Binary files a/themes/screenshots/apprentice.png and b/themes/screenshots/apprentice.png differ diff --git a/themes/screenshots/argonaut.png b/themes/screenshots/argonaut.png index 1838a98..201c917 100644 Binary files a/themes/screenshots/argonaut.png and b/themes/screenshots/argonaut.png differ diff --git a/themes/screenshots/arthur.png b/themes/screenshots/arthur.png index 264e609..53f9780 100644 Binary files a/themes/screenshots/arthur.png and b/themes/screenshots/arthur.png differ diff --git a/themes/screenshots/ashes.png b/themes/screenshots/ashes.png index a31ca29..5ce23f1 100644 Binary files a/themes/screenshots/ashes.png and b/themes/screenshots/ashes.png differ diff --git a/themes/screenshots/atelier-cave-light.png b/themes/screenshots/atelier-cave-light.png index 452007f..1aa185c 100644 Binary files a/themes/screenshots/atelier-cave-light.png and b/themes/screenshots/atelier-cave-light.png differ diff --git a/themes/screenshots/atelier-cave.png b/themes/screenshots/atelier-cave.png index 52737a6..c3a5a82 100644 Binary files a/themes/screenshots/atelier-cave.png and b/themes/screenshots/atelier-cave.png differ diff --git a/themes/screenshots/atelier-dune-light.png b/themes/screenshots/atelier-dune-light.png index 39f2477..ef098ca 100644 Binary files a/themes/screenshots/atelier-dune-light.png and b/themes/screenshots/atelier-dune-light.png differ diff --git a/themes/screenshots/atelier-dune.png b/themes/screenshots/atelier-dune.png index 0a86bd2..6d944c4 100644 Binary files a/themes/screenshots/atelier-dune.png and b/themes/screenshots/atelier-dune.png differ diff --git a/themes/screenshots/atelier-estuary-light.png b/themes/screenshots/atelier-estuary-light.png index b1785ff..e0c991c 100644 Binary files a/themes/screenshots/atelier-estuary-light.png and b/themes/screenshots/atelier-estuary-light.png differ diff --git a/themes/screenshots/atelier-estuary.png b/themes/screenshots/atelier-estuary.png index ac5a46f..015cd36 100644 Binary files a/themes/screenshots/atelier-estuary.png and b/themes/screenshots/atelier-estuary.png differ diff --git a/themes/screenshots/atelier-forest-light.png b/themes/screenshots/atelier-forest-light.png index 51317ce..2a373f6 100644 Binary files a/themes/screenshots/atelier-forest-light.png and b/themes/screenshots/atelier-forest-light.png differ diff --git a/themes/screenshots/atelier-forest.png b/themes/screenshots/atelier-forest.png index 053e96e..9b08dd0 100644 Binary files a/themes/screenshots/atelier-forest.png and b/themes/screenshots/atelier-forest.png differ diff --git a/themes/screenshots/atelier-heath-light.png b/themes/screenshots/atelier-heath-light.png index 6f91841..387f9d8 100644 Binary files a/themes/screenshots/atelier-heath-light.png and b/themes/screenshots/atelier-heath-light.png differ diff --git a/themes/screenshots/atelier-heath.png b/themes/screenshots/atelier-heath.png index 34a8359..1c6375f 100644 Binary files a/themes/screenshots/atelier-heath.png and b/themes/screenshots/atelier-heath.png differ diff --git a/themes/screenshots/atelier-lakeside-light.png b/themes/screenshots/atelier-lakeside-light.png index 6d876bb..7cab154 100644 Binary files a/themes/screenshots/atelier-lakeside-light.png and b/themes/screenshots/atelier-lakeside-light.png differ diff --git a/themes/screenshots/atelier-lakeside.png b/themes/screenshots/atelier-lakeside.png index 29c6213..a2bd302 100644 Binary files a/themes/screenshots/atelier-lakeside.png and b/themes/screenshots/atelier-lakeside.png differ diff --git a/themes/screenshots/atelier-plateau-light.png b/themes/screenshots/atelier-plateau-light.png index e4c2548..663ef3d 100644 Binary files a/themes/screenshots/atelier-plateau-light.png and b/themes/screenshots/atelier-plateau-light.png differ diff --git a/themes/screenshots/atelier-plateau.png b/themes/screenshots/atelier-plateau.png index 7989dc1..eebc6cf 100644 Binary files a/themes/screenshots/atelier-plateau.png and b/themes/screenshots/atelier-plateau.png differ diff --git a/themes/screenshots/atelier-savanna-light.png b/themes/screenshots/atelier-savanna-light.png index 34b6705..cea0f9e 100644 Binary files a/themes/screenshots/atelier-savanna-light.png and b/themes/screenshots/atelier-savanna-light.png differ diff --git a/themes/screenshots/atelier-savanna.png b/themes/screenshots/atelier-savanna.png index 1b66d11..afb68a7 100644 Binary files a/themes/screenshots/atelier-savanna.png and b/themes/screenshots/atelier-savanna.png differ diff --git a/themes/screenshots/atelier-seaside-light.png b/themes/screenshots/atelier-seaside-light.png index 034ab2b..ac16838 100644 Binary files a/themes/screenshots/atelier-seaside-light.png and b/themes/screenshots/atelier-seaside-light.png differ diff --git a/themes/screenshots/atelier-seaside.png b/themes/screenshots/atelier-seaside.png index 8026473..401668f 100644 Binary files a/themes/screenshots/atelier-seaside.png and b/themes/screenshots/atelier-seaside.png differ diff --git a/themes/screenshots/atelier-sulphurpool-light.png b/themes/screenshots/atelier-sulphurpool-light.png index db7afe5..1926ffc 100644 Binary files a/themes/screenshots/atelier-sulphurpool-light.png and b/themes/screenshots/atelier-sulphurpool-light.png differ diff --git a/themes/screenshots/atelier-sulphurpool.png b/themes/screenshots/atelier-sulphurpool.png index 9691ce8..a6b9300 100644 Binary files a/themes/screenshots/atelier-sulphurpool.png and b/themes/screenshots/atelier-sulphurpool.png differ diff --git a/themes/screenshots/atlas.png b/themes/screenshots/atlas.png index d9fd043..24f833b 100644 Binary files a/themes/screenshots/atlas.png and b/themes/screenshots/atlas.png differ diff --git a/themes/screenshots/atom-one-light.png b/themes/screenshots/atom-one-light.png index 95d1ef3..df26fa9 100644 Binary files a/themes/screenshots/atom-one-light.png and b/themes/screenshots/atom-one-light.png differ diff --git a/themes/screenshots/atom.png b/themes/screenshots/atom.png index 6e6d580..7d21759 100644 Binary files a/themes/screenshots/atom.png and b/themes/screenshots/atom.png differ diff --git a/themes/screenshots/ayu-light.png b/themes/screenshots/ayu-light.png index 0416cd2..b4ba3ff 100644 Binary files a/themes/screenshots/ayu-light.png and b/themes/screenshots/ayu-light.png differ diff --git a/themes/screenshots/ayu-mirage-simple-cursor.png b/themes/screenshots/ayu-mirage-simple-cursor.png index 3e82ef9..6d604c4 100644 Binary files a/themes/screenshots/ayu-mirage-simple-cursor.png and b/themes/screenshots/ayu-mirage-simple-cursor.png differ diff --git a/themes/screenshots/ayu-mirage.png b/themes/screenshots/ayu-mirage.png index b0a5924..007fe04 100644 Binary files a/themes/screenshots/ayu-mirage.png and b/themes/screenshots/ayu-mirage.png differ diff --git a/themes/screenshots/ayu.png b/themes/screenshots/ayu.png index 3c14d52..24a288b 100644 Binary files a/themes/screenshots/ayu.png and b/themes/screenshots/ayu.png differ diff --git a/themes/screenshots/azu.png b/themes/screenshots/azu.png index 562f250..f294732 100644 Binary files a/themes/screenshots/azu.png and b/themes/screenshots/azu.png differ diff --git a/themes/screenshots/batman.png b/themes/screenshots/batman.png index 3a701d7..0b7bf36 100644 Binary files a/themes/screenshots/batman.png and b/themes/screenshots/batman.png differ diff --git a/themes/screenshots/belafonte-day.png b/themes/screenshots/belafonte-day.png index be2ac66..a9e2af0 100644 Binary files a/themes/screenshots/belafonte-day.png and b/themes/screenshots/belafonte-day.png differ diff --git a/themes/screenshots/belafonte-night.png b/themes/screenshots/belafonte-night.png index df48799..fe816a6 100644 Binary files a/themes/screenshots/belafonte-night.png and b/themes/screenshots/belafonte-night.png differ diff --git a/themes/screenshots/bespin.png b/themes/screenshots/bespin.png index 922cc0f..0ece406 100644 Binary files a/themes/screenshots/bespin.png and b/themes/screenshots/bespin.png differ diff --git a/themes/screenshots/bim.png b/themes/screenshots/bim.png index 5c4059a..e4b3a07 100644 Binary files a/themes/screenshots/bim.png and b/themes/screenshots/bim.png differ diff --git a/themes/screenshots/birds-of-paradise.png b/themes/screenshots/birds-of-paradise.png index b5ed8e2..18173b1 100644 Binary files a/themes/screenshots/birds-of-paradise.png and b/themes/screenshots/birds-of-paradise.png differ diff --git a/themes/screenshots/black-metal-bathory.png b/themes/screenshots/black-metal-bathory.png index d05b4fa..448e452 100644 Binary files a/themes/screenshots/black-metal-bathory.png and b/themes/screenshots/black-metal-bathory.png differ diff --git a/themes/screenshots/black-metal-burzum.png b/themes/screenshots/black-metal-burzum.png index e32d108..64739d4 100644 Binary files a/themes/screenshots/black-metal-burzum.png and b/themes/screenshots/black-metal-burzum.png differ diff --git a/themes/screenshots/black-metal-dark-funeral.png b/themes/screenshots/black-metal-dark-funeral.png index 2bf2ab8..6c7ec9f 100644 Binary files a/themes/screenshots/black-metal-dark-funeral.png and b/themes/screenshots/black-metal-dark-funeral.png differ diff --git a/themes/screenshots/black-metal-gorgoroth.png b/themes/screenshots/black-metal-gorgoroth.png index 7333d47..4383d62 100644 Binary files a/themes/screenshots/black-metal-gorgoroth.png and b/themes/screenshots/black-metal-gorgoroth.png differ diff --git a/themes/screenshots/black-metal-immortal.png b/themes/screenshots/black-metal-immortal.png index 2bfa218..6090d3d 100644 Binary files a/themes/screenshots/black-metal-immortal.png and b/themes/screenshots/black-metal-immortal.png differ diff --git a/themes/screenshots/black-metal-khold.png b/themes/screenshots/black-metal-khold.png index 83d461e..8207051 100644 Binary files a/themes/screenshots/black-metal-khold.png and b/themes/screenshots/black-metal-khold.png differ diff --git a/themes/screenshots/black-metal-marduk.png b/themes/screenshots/black-metal-marduk.png index 848757e..1b96eb0 100644 Binary files a/themes/screenshots/black-metal-marduk.png and b/themes/screenshots/black-metal-marduk.png differ diff --git a/themes/screenshots/black-metal-mayhem.png b/themes/screenshots/black-metal-mayhem.png index 8939624..0611211 100644 Binary files a/themes/screenshots/black-metal-mayhem.png and b/themes/screenshots/black-metal-mayhem.png differ diff --git a/themes/screenshots/black-metal-nile.png b/themes/screenshots/black-metal-nile.png index 4387573..7dc2ab4 100644 Binary files a/themes/screenshots/black-metal-nile.png and b/themes/screenshots/black-metal-nile.png differ diff --git a/themes/screenshots/black-metal-venom.png b/themes/screenshots/black-metal-venom.png index bfdcc5e..cb4c3e8 100644 Binary files a/themes/screenshots/black-metal-venom.png and b/themes/screenshots/black-metal-venom.png differ diff --git a/themes/screenshots/black-metal.png b/themes/screenshots/black-metal.png index e7a3e27..d0ade53 100644 Binary files a/themes/screenshots/black-metal.png and b/themes/screenshots/black-metal.png differ diff --git a/themes/screenshots/blazer.png b/themes/screenshots/blazer.png index d57e0f9..8b4f824 100644 Binary files a/themes/screenshots/blazer.png and b/themes/screenshots/blazer.png differ diff --git a/themes/screenshots/borland.png b/themes/screenshots/borland.png index 14a406a..292f2cc 100644 Binary files a/themes/screenshots/borland.png and b/themes/screenshots/borland.png differ diff --git a/themes/screenshots/brewer.png b/themes/screenshots/brewer.png index 089485b..156f213 100644 Binary files a/themes/screenshots/brewer.png and b/themes/screenshots/brewer.png differ diff --git a/themes/screenshots/bright-lights.png b/themes/screenshots/bright-lights.png index 7e5b8fd..88dcfb5 100644 Binary files a/themes/screenshots/bright-lights.png and b/themes/screenshots/bright-lights.png differ diff --git a/themes/screenshots/bright.png b/themes/screenshots/bright.png index 17319f7..e963f3c 100644 Binary files a/themes/screenshots/bright.png and b/themes/screenshots/bright.png differ diff --git a/themes/screenshots/broadcast.png b/themes/screenshots/broadcast.png index 0f93fa8..2f13f4d 100644 Binary files a/themes/screenshots/broadcast.png and b/themes/screenshots/broadcast.png differ diff --git a/themes/screenshots/brogrammer.png b/themes/screenshots/brogrammer.png index 862e1ce..ceb8152 100644 Binary files a/themes/screenshots/brogrammer.png and b/themes/screenshots/brogrammer.png differ diff --git a/themes/screenshots/brushtrees-dark.png b/themes/screenshots/brushtrees-dark.png index 712b3e8..69ddc81 100644 Binary files a/themes/screenshots/brushtrees-dark.png and b/themes/screenshots/brushtrees-dark.png differ diff --git a/themes/screenshots/brushtrees.png b/themes/screenshots/brushtrees.png index fdd2474..3b4896a 100644 Binary files a/themes/screenshots/brushtrees.png and b/themes/screenshots/brushtrees.png differ diff --git a/themes/screenshots/c64.png b/themes/screenshots/c64.png index 81cd07d..30ea994 100644 Binary files a/themes/screenshots/c64.png and b/themes/screenshots/c64.png differ diff --git a/themes/screenshots/cai.png b/themes/screenshots/cai.png index 453a2f6..da92586 100644 Binary files a/themes/screenshots/cai.png and b/themes/screenshots/cai.png differ diff --git a/themes/screenshots/catppuccin-latte.png b/themes/screenshots/catppuccin-latte.png new file mode 100644 index 0000000..171ca7f Binary files /dev/null and b/themes/screenshots/catppuccin-latte.png differ diff --git a/themes/screenshots/catppuccin-mocha.png b/themes/screenshots/catppuccin-mocha.png index ffcee55..54f5cd1 100644 Binary files a/themes/screenshots/catppuccin-mocha.png and b/themes/screenshots/catppuccin-mocha.png differ diff --git a/themes/screenshots/chalk.png b/themes/screenshots/chalk.png index 23bffaf..9e3de26 100644 Binary files a/themes/screenshots/chalk.png and b/themes/screenshots/chalk.png differ diff --git a/themes/screenshots/chalkboard.png b/themes/screenshots/chalkboard.png index 0353703..1da9f77 100644 Binary files a/themes/screenshots/chalkboard.png and b/themes/screenshots/chalkboard.png differ diff --git a/themes/screenshots/challenger-deep.png b/themes/screenshots/challenger-deep.png index 45dbf9b..6551439 100644 Binary files a/themes/screenshots/challenger-deep.png and b/themes/screenshots/challenger-deep.png differ diff --git a/themes/screenshots/ciapre.png b/themes/screenshots/ciapre.png index a9115cd..35a05ba 100644 Binary files a/themes/screenshots/ciapre.png and b/themes/screenshots/ciapre.png differ diff --git a/themes/screenshots/circus.png b/themes/screenshots/circus.png index 2287f44..d39df14 100644 Binary files a/themes/screenshots/circus.png and b/themes/screenshots/circus.png differ diff --git a/themes/screenshots/classic-dark.png b/themes/screenshots/classic-dark.png index 25839ca..202af28 100644 Binary files a/themes/screenshots/classic-dark.png and b/themes/screenshots/classic-dark.png differ diff --git a/themes/screenshots/classic-light.png b/themes/screenshots/classic-light.png index 505d36f..c3d65f9 100644 Binary files a/themes/screenshots/classic-light.png and b/themes/screenshots/classic-light.png differ diff --git a/themes/screenshots/clone-of-ubuntu.png b/themes/screenshots/clone-of-ubuntu.png index 2cf6632..5aaad26 100644 Binary files a/themes/screenshots/clone-of-ubuntu.png and b/themes/screenshots/clone-of-ubuntu.png differ diff --git a/themes/screenshots/clrs.png b/themes/screenshots/clrs.png index 65d222e..165eeb5 100644 Binary files a/themes/screenshots/clrs.png and b/themes/screenshots/clrs.png differ diff --git a/themes/screenshots/cobalt-neon.png b/themes/screenshots/cobalt-neon.png index 9b20bd1..855fd43 100644 Binary files a/themes/screenshots/cobalt-neon.png and b/themes/screenshots/cobalt-neon.png differ diff --git a/themes/screenshots/cobalt2.png b/themes/screenshots/cobalt2.png index c577177..d2f62ca 100644 Binary files a/themes/screenshots/cobalt2.png and b/themes/screenshots/cobalt2.png differ diff --git a/themes/screenshots/codeschool.png b/themes/screenshots/codeschool.png index ccf263e..20d8373 100644 Binary files a/themes/screenshots/codeschool.png and b/themes/screenshots/codeschool.png differ diff --git a/themes/screenshots/corvine.png b/themes/screenshots/corvine.png index 39978a2..cfd014b 100644 Binary files a/themes/screenshots/corvine.png and b/themes/screenshots/corvine.png differ diff --git a/themes/screenshots/crayon-pony-fish.png b/themes/screenshots/crayon-pony-fish.png index b593647..cdb5729 100644 Binary files a/themes/screenshots/crayon-pony-fish.png and b/themes/screenshots/crayon-pony-fish.png differ diff --git a/themes/screenshots/cupcake.png b/themes/screenshots/cupcake.png index 671ebb9..8b9cf7e 100644 Binary files a/themes/screenshots/cupcake.png and b/themes/screenshots/cupcake.png differ diff --git a/themes/screenshots/cupertino.png b/themes/screenshots/cupertino.png index 9b78300..b8b1c7a 100644 Binary files a/themes/screenshots/cupertino.png and b/themes/screenshots/cupertino.png differ diff --git a/themes/screenshots/danqing.png b/themes/screenshots/danqing.png index 731fb8a..d9933d8 100644 Binary files a/themes/screenshots/danqing.png and b/themes/screenshots/danqing.png differ diff --git a/themes/screenshots/darcula.png b/themes/screenshots/darcula.png index dfce6d0..b177914 100644 Binary files a/themes/screenshots/darcula.png and b/themes/screenshots/darcula.png differ diff --git a/themes/screenshots/dark-pastel.png b/themes/screenshots/dark-pastel.png index 2b63848..47e8647 100644 Binary files a/themes/screenshots/dark-pastel.png and b/themes/screenshots/dark-pastel.png differ diff --git a/themes/screenshots/darkmoss.png b/themes/screenshots/darkmoss.png index 5fc692e..4d0ea03 100644 Binary files a/themes/screenshots/darkmoss.png and b/themes/screenshots/darkmoss.png differ diff --git a/themes/screenshots/darkside.png b/themes/screenshots/darkside.png index bb2b816..da040aa 100644 Binary files a/themes/screenshots/darkside.png and b/themes/screenshots/darkside.png differ diff --git a/themes/screenshots/darktooth.png b/themes/screenshots/darktooth.png index 6298036..5a23636 100644 Binary files a/themes/screenshots/darktooth.png and b/themes/screenshots/darktooth.png differ diff --git a/themes/screenshots/darkviolet.png b/themes/screenshots/darkviolet.png index 1911957..18778e9 100644 Binary files a/themes/screenshots/darkviolet.png and b/themes/screenshots/darkviolet.png differ diff --git a/themes/screenshots/decaf.png b/themes/screenshots/decaf.png index 2cf7494..ceb49a9 100644 Binary files a/themes/screenshots/decaf.png and b/themes/screenshots/decaf.png differ diff --git a/themes/screenshots/default-dark.png b/themes/screenshots/default-dark.png index ef6a9e9..7f1a09f 100644 Binary files a/themes/screenshots/default-dark.png and b/themes/screenshots/default-dark.png differ diff --git a/themes/screenshots/default-light.png b/themes/screenshots/default-light.png index a133dd3..27962a0 100644 Binary files a/themes/screenshots/default-light.png and b/themes/screenshots/default-light.png differ diff --git a/themes/screenshots/desert-night.png b/themes/screenshots/desert-night.png index 1aa56cf..0b24560 100644 Binary files a/themes/screenshots/desert-night.png and b/themes/screenshots/desert-night.png differ diff --git a/themes/screenshots/desert.png b/themes/screenshots/desert.png index 2cdf814..64326d4 100644 Binary files a/themes/screenshots/desert.png and b/themes/screenshots/desert.png differ diff --git a/themes/screenshots/dimmed-monokai.png b/themes/screenshots/dimmed-monokai.png index 6b58e8e..836fbaf 100644 Binary files a/themes/screenshots/dimmed-monokai.png and b/themes/screenshots/dimmed-monokai.png differ diff --git a/themes/screenshots/dirtysea.png b/themes/screenshots/dirtysea.png index d50a317..b042f72 100644 Binary files a/themes/screenshots/dirtysea.png and b/themes/screenshots/dirtysea.png differ diff --git a/themes/screenshots/dot-gov.png b/themes/screenshots/dot-gov.png index 99ead38..4f2bfc1 100644 Binary files a/themes/screenshots/dot-gov.png and b/themes/screenshots/dot-gov.png differ diff --git a/themes/screenshots/dracula.png b/themes/screenshots/dracula.png index 4a20f1b..6eb1239 100644 Binary files a/themes/screenshots/dracula.png and b/themes/screenshots/dracula.png differ diff --git a/themes/screenshots/dumbledore.png b/themes/screenshots/dumbledore.png index 2678fcd..2fdbf02 100644 Binary files a/themes/screenshots/dumbledore.png and b/themes/screenshots/dumbledore.png differ diff --git a/themes/screenshots/duotone-dark.png b/themes/screenshots/duotone-dark.png index 27b35a4..224b6bd 100644 Binary files a/themes/screenshots/duotone-dark.png and b/themes/screenshots/duotone-dark.png differ diff --git a/themes/screenshots/e-n-c-o-m.png b/themes/screenshots/e-n-c-o-m.png index 0ed7bd4..acac983 100644 Binary files a/themes/screenshots/e-n-c-o-m.png and b/themes/screenshots/e-n-c-o-m.png differ diff --git a/themes/screenshots/earthsong.png b/themes/screenshots/earthsong.png index cbaf729..d86c8b1 100644 Binary files a/themes/screenshots/earthsong.png and b/themes/screenshots/earthsong.png differ diff --git a/themes/screenshots/edge-dark.png b/themes/screenshots/edge-dark.png index 58c4b67..09e0b5c 100644 Binary files a/themes/screenshots/edge-dark.png and b/themes/screenshots/edge-dark.png differ diff --git a/themes/screenshots/edge-light.png b/themes/screenshots/edge-light.png index 26158cd..b91d2d2 100644 Binary files a/themes/screenshots/edge-light.png and b/themes/screenshots/edge-light.png differ diff --git a/themes/screenshots/eighties.png b/themes/screenshots/eighties.png index f115433..ea5613c 100644 Binary files a/themes/screenshots/eighties.png and b/themes/screenshots/eighties.png differ diff --git a/themes/screenshots/elemental.png b/themes/screenshots/elemental.png index 7334308..d4fbe6b 100644 Binary files a/themes/screenshots/elemental.png and b/themes/screenshots/elemental.png differ diff --git a/themes/screenshots/elementary.png b/themes/screenshots/elementary.png index b1fc319..ed8ba3d 100644 Binary files a/themes/screenshots/elementary.png and b/themes/screenshots/elementary.png differ diff --git a/themes/screenshots/elic.png b/themes/screenshots/elic.png index c47c908..7ae4e44 100644 Binary files a/themes/screenshots/elic.png and b/themes/screenshots/elic.png differ diff --git a/themes/screenshots/elio.png b/themes/screenshots/elio.png index da0a8ec..17a8953 100644 Binary files a/themes/screenshots/elio.png and b/themes/screenshots/elio.png differ diff --git a/themes/screenshots/embark.png b/themes/screenshots/embark.png index a7df64f..3108487 100644 Binary files a/themes/screenshots/embark.png and b/themes/screenshots/embark.png differ diff --git a/themes/screenshots/embers.png b/themes/screenshots/embers.png index 67cc98f..03d4976 100644 Binary files a/themes/screenshots/embers.png and b/themes/screenshots/embers.png differ diff --git a/themes/screenshots/equilibrium-dark.png b/themes/screenshots/equilibrium-dark.png index e440c99..7192131 100644 Binary files a/themes/screenshots/equilibrium-dark.png and b/themes/screenshots/equilibrium-dark.png differ diff --git a/themes/screenshots/equilibrium-gray-dark.png b/themes/screenshots/equilibrium-gray-dark.png index af6a2bc..4ad618c 100644 Binary files a/themes/screenshots/equilibrium-gray-dark.png and b/themes/screenshots/equilibrium-gray-dark.png differ diff --git a/themes/screenshots/equilibrium-gray-light.png b/themes/screenshots/equilibrium-gray-light.png index e747c26..4dbb206 100644 Binary files a/themes/screenshots/equilibrium-gray-light.png and b/themes/screenshots/equilibrium-gray-light.png differ diff --git a/themes/screenshots/equilibrium-light.png b/themes/screenshots/equilibrium-light.png index f014025..4e51d30 100644 Binary files a/themes/screenshots/equilibrium-light.png and b/themes/screenshots/equilibrium-light.png differ diff --git a/themes/screenshots/espresso-libre.png b/themes/screenshots/espresso-libre.png index cbbf411..58380f4 100644 Binary files a/themes/screenshots/espresso-libre.png and b/themes/screenshots/espresso-libre.png differ diff --git a/themes/screenshots/espresso.png b/themes/screenshots/espresso.png index 3b1e964..864789f 100644 Binary files a/themes/screenshots/espresso.png and b/themes/screenshots/espresso.png differ diff --git a/themes/screenshots/eva-dim.png b/themes/screenshots/eva-dim.png index 6cf074b..b0b860c 100644 Binary files a/themes/screenshots/eva-dim.png and b/themes/screenshots/eva-dim.png differ diff --git a/themes/screenshots/eva.png b/themes/screenshots/eva.png index bdef4d5..546fbb7 100644 Binary files a/themes/screenshots/eva.png and b/themes/screenshots/eva.png differ diff --git a/themes/screenshots/everforest-light.png b/themes/screenshots/everforest-light.png index 7ad7283..8f4fcc4 100644 Binary files a/themes/screenshots/everforest-light.png and b/themes/screenshots/everforest-light.png differ diff --git a/themes/screenshots/everforest.png b/themes/screenshots/everforest.png index 6040171..ee89a9d 100644 Binary files a/themes/screenshots/everforest.png and b/themes/screenshots/everforest.png differ diff --git a/themes/screenshots/falcon.png b/themes/screenshots/falcon.png index 4732ddf..80e0012 100644 Binary files a/themes/screenshots/falcon.png and b/themes/screenshots/falcon.png differ diff --git a/themes/screenshots/farin.png b/themes/screenshots/farin.png index 3ff6cff..667c574 100644 Binary files a/themes/screenshots/farin.png and b/themes/screenshots/farin.png differ diff --git a/themes/screenshots/ffive.png b/themes/screenshots/ffive.png index afadaba..f21d9fb 100644 Binary files a/themes/screenshots/ffive.png and b/themes/screenshots/ffive.png differ diff --git a/themes/screenshots/fideloper.png b/themes/screenshots/fideloper.png index b6d11ed..8ef82d5 100644 Binary files a/themes/screenshots/fideloper.png and b/themes/screenshots/fideloper.png differ diff --git a/themes/screenshots/fishtank.png b/themes/screenshots/fishtank.png index 3fec5f1..56c931d 100644 Binary files a/themes/screenshots/fishtank.png and b/themes/screenshots/fishtank.png differ diff --git a/themes/screenshots/flat.png b/themes/screenshots/flat.png index cfbf96b..3a84dfa 100644 Binary files a/themes/screenshots/flat.png and b/themes/screenshots/flat.png differ diff --git a/themes/screenshots/flatland.png b/themes/screenshots/flatland.png index 0925c29..03d5978 100644 Binary files a/themes/screenshots/flatland.png and b/themes/screenshots/flatland.png differ diff --git a/themes/screenshots/floraverse.png b/themes/screenshots/floraverse.png index 756aff4..ed2411c 100644 Binary files a/themes/screenshots/floraverse.png and b/themes/screenshots/floraverse.png differ diff --git a/themes/screenshots/forest-night.png b/themes/screenshots/forest-night.png index 8adfe73..e979cce 100644 Binary files a/themes/screenshots/forest-night.png and b/themes/screenshots/forest-night.png differ diff --git a/themes/screenshots/foxnightly.png b/themes/screenshots/foxnightly.png index f04f4e1..cf9b457 100644 Binary files a/themes/screenshots/foxnightly.png and b/themes/screenshots/foxnightly.png differ diff --git a/themes/screenshots/framer.png b/themes/screenshots/framer.png index e4ab790..a75d756 100644 Binary files a/themes/screenshots/framer.png and b/themes/screenshots/framer.png differ diff --git a/themes/screenshots/freya.png b/themes/screenshots/freya.png index d9cb71d..7019c76 100644 Binary files a/themes/screenshots/freya.png and b/themes/screenshots/freya.png differ diff --git a/themes/screenshots/frontend-delight.png b/themes/screenshots/frontend-delight.png index 7d74b7b..5471558 100644 Binary files a/themes/screenshots/frontend-delight.png and b/themes/screenshots/frontend-delight.png differ diff --git a/themes/screenshots/frontend-fun-forrest.png b/themes/screenshots/frontend-fun-forrest.png index 1884ae8..afdb706 100644 Binary files a/themes/screenshots/frontend-fun-forrest.png and b/themes/screenshots/frontend-fun-forrest.png differ diff --git a/themes/screenshots/frontend-galaxy.png b/themes/screenshots/frontend-galaxy.png index 424712b..3237317 100644 Binary files a/themes/screenshots/frontend-galaxy.png and b/themes/screenshots/frontend-galaxy.png differ diff --git a/themes/screenshots/fruit-soda.png b/themes/screenshots/fruit-soda.png index 7813970..394ae43 100644 Binary files a/themes/screenshots/fruit-soda.png and b/themes/screenshots/fruit-soda.png differ diff --git a/themes/screenshots/gigavolt.png b/themes/screenshots/gigavolt.png index bd14470..1704fb6 100644 Binary files a/themes/screenshots/gigavolt.png and b/themes/screenshots/gigavolt.png differ diff --git a/themes/screenshots/github-dark-colorblind.png b/themes/screenshots/github-dark-colorblind.png index 05ee2f1..8c412c2 100644 Binary files a/themes/screenshots/github-dark-colorblind.png and b/themes/screenshots/github-dark-colorblind.png differ diff --git a/themes/screenshots/github-dark-default.png b/themes/screenshots/github-dark-default.png index 0cec354..e214691 100644 Binary files a/themes/screenshots/github-dark-default.png and b/themes/screenshots/github-dark-default.png differ diff --git a/themes/screenshots/github-dark.png b/themes/screenshots/github-dark.png index 02a733f..3f8604d 100644 Binary files a/themes/screenshots/github-dark.png and b/themes/screenshots/github-dark.png differ diff --git a/themes/screenshots/github-dimmed.png b/themes/screenshots/github-dimmed.png index d86ddbf..3196e17 100644 Binary files a/themes/screenshots/github-dimmed.png and b/themes/screenshots/github-dimmed.png differ diff --git a/themes/screenshots/github-light-colorblind.png b/themes/screenshots/github-light-colorblind.png index dac9fbf..c2dc98f 100644 Binary files a/themes/screenshots/github-light-colorblind.png and b/themes/screenshots/github-light-colorblind.png differ diff --git a/themes/screenshots/github-light-default.png b/themes/screenshots/github-light-default.png index a957b0e..9a25821 100644 Binary files a/themes/screenshots/github-light-default.png and b/themes/screenshots/github-light-default.png differ diff --git a/themes/screenshots/github-light.png b/themes/screenshots/github-light.png index f0195f4..e8557e9 100644 Binary files a/themes/screenshots/github-light.png and b/themes/screenshots/github-light.png differ diff --git a/themes/screenshots/github.png b/themes/screenshots/github.png index 783127f..85524ed 100644 Binary files a/themes/screenshots/github.png and b/themes/screenshots/github.png differ diff --git a/themes/screenshots/glacier.png b/themes/screenshots/glacier.png index e1f0f7c..ccd7284 100644 Binary files a/themes/screenshots/glacier.png and b/themes/screenshots/glacier.png differ diff --git a/themes/screenshots/goa-base.png b/themes/screenshots/goa-base.png index 7316817..1cae864 100644 Binary files a/themes/screenshots/goa-base.png and b/themes/screenshots/goa-base.png differ diff --git a/themes/screenshots/gooey.png b/themes/screenshots/gooey.png index dea4272..fb02a9e 100644 Binary files a/themes/screenshots/gooey.png and b/themes/screenshots/gooey.png differ diff --git a/themes/screenshots/google-dark.png b/themes/screenshots/google-dark.png index 0e81739..bd1602b 100644 Binary files a/themes/screenshots/google-dark.png and b/themes/screenshots/google-dark.png differ diff --git a/themes/screenshots/google-light.png b/themes/screenshots/google-light.png index 17ab7b1..816fc38 100644 Binary files a/themes/screenshots/google-light.png and b/themes/screenshots/google-light.png differ diff --git a/themes/screenshots/grape.png b/themes/screenshots/grape.png index cd77a3e..50cd7e8 100644 Binary files a/themes/screenshots/grape.png and b/themes/screenshots/grape.png differ diff --git a/themes/screenshots/grass.png b/themes/screenshots/grass.png index 4ba66ea..90553c7 100644 Binary files a/themes/screenshots/grass.png and b/themes/screenshots/grass.png differ diff --git a/themes/screenshots/grayscale-dark.png b/themes/screenshots/grayscale-dark.png index 546d7f4..2757b83 100644 Binary files a/themes/screenshots/grayscale-dark.png and b/themes/screenshots/grayscale-dark.png differ diff --git a/themes/screenshots/grayscale-light.png b/themes/screenshots/grayscale-light.png index 2928c51..8cc38d8 100644 Binary files a/themes/screenshots/grayscale-light.png and b/themes/screenshots/grayscale-light.png differ diff --git a/themes/screenshots/green-screen.png b/themes/screenshots/green-screen.png index bdf77b3..ecd306b 100644 Binary files a/themes/screenshots/green-screen.png and b/themes/screenshots/green-screen.png differ diff --git a/themes/screenshots/greenscreen.png b/themes/screenshots/greenscreen.png index 5203d7f..d439312 100644 Binary files a/themes/screenshots/greenscreen.png and b/themes/screenshots/greenscreen.png differ diff --git a/themes/screenshots/gruvbit.png b/themes/screenshots/gruvbit.png index a49f9dd..287aa12 100644 Binary files a/themes/screenshots/gruvbit.png and b/themes/screenshots/gruvbit.png differ diff --git a/themes/screenshots/gruvbox-dark-hard.png b/themes/screenshots/gruvbox-dark-hard.png index 49e6b3e..534eafb 100644 Binary files a/themes/screenshots/gruvbox-dark-hard.png and b/themes/screenshots/gruvbox-dark-hard.png differ diff --git a/themes/screenshots/gruvbox-dark-medium.png b/themes/screenshots/gruvbox-dark-medium.png index 21564e7..3ef77bd 100644 Binary files a/themes/screenshots/gruvbox-dark-medium.png and b/themes/screenshots/gruvbox-dark-medium.png differ diff --git a/themes/screenshots/gruvbox-dark-pale.png b/themes/screenshots/gruvbox-dark-pale.png index 0fe1732..7c05b2f 100644 Binary files a/themes/screenshots/gruvbox-dark-pale.png and b/themes/screenshots/gruvbox-dark-pale.png differ diff --git a/themes/screenshots/gruvbox-dark-soft.png b/themes/screenshots/gruvbox-dark-soft.png index 244f092..3564d04 100644 Binary files a/themes/screenshots/gruvbox-dark-soft.png and b/themes/screenshots/gruvbox-dark-soft.png differ diff --git a/themes/screenshots/gruvbox-dark.png b/themes/screenshots/gruvbox-dark.png index aec3693..704b925 100644 Binary files a/themes/screenshots/gruvbox-dark.png and b/themes/screenshots/gruvbox-dark.png differ diff --git a/themes/screenshots/gruvbox-light-hard.png b/themes/screenshots/gruvbox-light-hard.png index 89e9063..2fffd07 100644 Binary files a/themes/screenshots/gruvbox-light-hard.png and b/themes/screenshots/gruvbox-light-hard.png differ diff --git a/themes/screenshots/gruvbox-light-medium.png b/themes/screenshots/gruvbox-light-medium.png index c75fa50..194ea5a 100644 Binary files a/themes/screenshots/gruvbox-light-medium.png and b/themes/screenshots/gruvbox-light-medium.png differ diff --git a/themes/screenshots/gruvbox-light-soft.png b/themes/screenshots/gruvbox-light-soft.png index 6d7c229..d8f76c5 100644 Binary files a/themes/screenshots/gruvbox-light-soft.png and b/themes/screenshots/gruvbox-light-soft.png differ diff --git a/themes/screenshots/gruvbox-material-dark-hard.png b/themes/screenshots/gruvbox-material-dark-hard.png index 2e1dc70..c3b17a0 100644 Binary files a/themes/screenshots/gruvbox-material-dark-hard.png and b/themes/screenshots/gruvbox-material-dark-hard.png differ diff --git a/themes/screenshots/gruvbox-material-dark-medium.png b/themes/screenshots/gruvbox-material-dark-medium.png index 5221470..2b08f6a 100644 Binary files a/themes/screenshots/gruvbox-material-dark-medium.png and b/themes/screenshots/gruvbox-material-dark-medium.png differ diff --git a/themes/screenshots/gruvbox-material-dark-soft.png b/themes/screenshots/gruvbox-material-dark-soft.png index 571de31..e839078 100644 Binary files a/themes/screenshots/gruvbox-material-dark-soft.png and b/themes/screenshots/gruvbox-material-dark-soft.png differ diff --git a/themes/screenshots/gruvbox-material-light-hard.png b/themes/screenshots/gruvbox-material-light-hard.png index de602d8..9c035dc 100644 Binary files a/themes/screenshots/gruvbox-material-light-hard.png and b/themes/screenshots/gruvbox-material-light-hard.png differ diff --git a/themes/screenshots/gruvbox-material-light-medium.png b/themes/screenshots/gruvbox-material-light-medium.png index b0f7ba8..b66e64a 100644 Binary files a/themes/screenshots/gruvbox-material-light-medium.png and b/themes/screenshots/gruvbox-material-light-medium.png differ diff --git a/themes/screenshots/gruvbox-material-light-soft.png b/themes/screenshots/gruvbox-material-light-soft.png index fb27c1b..a61abef 100644 Binary files a/themes/screenshots/gruvbox-material-light-soft.png and b/themes/screenshots/gruvbox-material-light-soft.png differ diff --git a/themes/screenshots/gruvbox-mix-dark-hard.png b/themes/screenshots/gruvbox-mix-dark-hard.png index a0e4703..6d65dd5 100644 Binary files a/themes/screenshots/gruvbox-mix-dark-hard.png and b/themes/screenshots/gruvbox-mix-dark-hard.png differ diff --git a/themes/screenshots/gruvbox-mix-dark-medium.png b/themes/screenshots/gruvbox-mix-dark-medium.png index eb6d03e..1b92cb3 100644 Binary files a/themes/screenshots/gruvbox-mix-dark-medium.png and b/themes/screenshots/gruvbox-mix-dark-medium.png differ diff --git a/themes/screenshots/gruvbox-mix-dark-soft.png b/themes/screenshots/gruvbox-mix-dark-soft.png index 72e7929..df2028d 100644 Binary files a/themes/screenshots/gruvbox-mix-dark-soft.png and b/themes/screenshots/gruvbox-mix-dark-soft.png differ diff --git a/themes/screenshots/gruvbox-mix-light-hard.png b/themes/screenshots/gruvbox-mix-light-hard.png index 8ea6745..4421478 100644 Binary files a/themes/screenshots/gruvbox-mix-light-hard.png and b/themes/screenshots/gruvbox-mix-light-hard.png differ diff --git a/themes/screenshots/gruvbox-mix-light-medium.png b/themes/screenshots/gruvbox-mix-light-medium.png index 6b95081..af02366 100644 Binary files a/themes/screenshots/gruvbox-mix-light-medium.png and b/themes/screenshots/gruvbox-mix-light-medium.png differ diff --git a/themes/screenshots/gruvbox-mix-light-soft.png b/themes/screenshots/gruvbox-mix-light-soft.png index d8e377f..0c93eea 100644 Binary files a/themes/screenshots/gruvbox-mix-light-soft.png and b/themes/screenshots/gruvbox-mix-light-soft.png differ diff --git a/themes/screenshots/gruvbox-original-dark-hard.png b/themes/screenshots/gruvbox-original-dark-hard.png index 11c145b..b293b94 100644 Binary files a/themes/screenshots/gruvbox-original-dark-hard.png and b/themes/screenshots/gruvbox-original-dark-hard.png differ diff --git a/themes/screenshots/gruvbox-original-dark-medium.png b/themes/screenshots/gruvbox-original-dark-medium.png index 437b59a..6ede9f9 100644 Binary files a/themes/screenshots/gruvbox-original-dark-medium.png and b/themes/screenshots/gruvbox-original-dark-medium.png differ diff --git a/themes/screenshots/gruvbox-original-dark-soft.png b/themes/screenshots/gruvbox-original-dark-soft.png index 5f4a596..e4352c8 100644 Binary files a/themes/screenshots/gruvbox-original-dark-soft.png and b/themes/screenshots/gruvbox-original-dark-soft.png differ diff --git a/themes/screenshots/gruvbox-original-light-hard.png b/themes/screenshots/gruvbox-original-light-hard.png index bcf6c81..9a908f1 100644 Binary files a/themes/screenshots/gruvbox-original-light-hard.png and b/themes/screenshots/gruvbox-original-light-hard.png differ diff --git a/themes/screenshots/gruvbox-original-light-medium.png b/themes/screenshots/gruvbox-original-light-medium.png index 1da096c..f6a3399 100644 Binary files a/themes/screenshots/gruvbox-original-light-medium.png and b/themes/screenshots/gruvbox-original-light-medium.png differ diff --git a/themes/screenshots/gruvbox-original-light-soft.png b/themes/screenshots/gruvbox-original-light-soft.png index ad12035..480c941 100644 Binary files a/themes/screenshots/gruvbox-original-light-soft.png and b/themes/screenshots/gruvbox-original-light-soft.png differ diff --git a/themes/screenshots/gruvbox.png b/themes/screenshots/gruvbox.png index 8a81f05..a747f1b 100644 Binary files a/themes/screenshots/gruvbox.png and b/themes/screenshots/gruvbox.png differ diff --git a/themes/screenshots/hardcore.png b/themes/screenshots/hardcore.png index 7949c0b..2a2cb5d 100644 Binary files a/themes/screenshots/hardcore.png and b/themes/screenshots/hardcore.png differ diff --git a/themes/screenshots/harmonic-dark.png b/themes/screenshots/harmonic-dark.png index 1fe95d0..515b463 100644 Binary files a/themes/screenshots/harmonic-dark.png and b/themes/screenshots/harmonic-dark.png differ diff --git a/themes/screenshots/harmonic-light.png b/themes/screenshots/harmonic-light.png index 7ed8ed8..cd9696a 100644 Binary files a/themes/screenshots/harmonic-light.png and b/themes/screenshots/harmonic-light.png differ diff --git a/themes/screenshots/harmonic16-dark.png b/themes/screenshots/harmonic16-dark.png index bf0afa7..e92beee 100644 Binary files a/themes/screenshots/harmonic16-dark.png and b/themes/screenshots/harmonic16-dark.png differ diff --git a/themes/screenshots/harmonic16-light.png b/themes/screenshots/harmonic16-light.png index e72618b..8db00f3 100644 Binary files a/themes/screenshots/harmonic16-light.png and b/themes/screenshots/harmonic16-light.png differ diff --git a/themes/screenshots/harper.png b/themes/screenshots/harper.png index 06ca97c..422b651 100644 Binary files a/themes/screenshots/harper.png and b/themes/screenshots/harper.png differ diff --git a/themes/screenshots/heetch-light.png b/themes/screenshots/heetch-light.png index dc6ace8..c5b56bd 100644 Binary files a/themes/screenshots/heetch-light.png and b/themes/screenshots/heetch-light.png differ diff --git a/themes/screenshots/heetch.png b/themes/screenshots/heetch.png index 44aaaa9..9fef95b 100644 Binary files a/themes/screenshots/heetch.png and b/themes/screenshots/heetch.png differ diff --git a/themes/screenshots/helios.png b/themes/screenshots/helios.png index 330c99b..715cc56 100644 Binary files a/themes/screenshots/helios.png and b/themes/screenshots/helios.png differ diff --git a/themes/screenshots/hemisu-dark.png b/themes/screenshots/hemisu-dark.png index 5833e25..f306928 100644 Binary files a/themes/screenshots/hemisu-dark.png and b/themes/screenshots/hemisu-dark.png differ diff --git a/themes/screenshots/hemisu-light.png b/themes/screenshots/hemisu-light.png index 4a94325..4f63cb7 100644 Binary files a/themes/screenshots/hemisu-light.png and b/themes/screenshots/hemisu-light.png differ diff --git a/themes/screenshots/highway.png b/themes/screenshots/highway.png index 04db203..ed2ee78 100644 Binary files a/themes/screenshots/highway.png and b/themes/screenshots/highway.png differ diff --git a/themes/screenshots/hipster-green.png b/themes/screenshots/hipster-green.png index e0c4d4d..78c1a22 100644 Binary files a/themes/screenshots/hipster-green.png and b/themes/screenshots/hipster-green.png differ diff --git a/themes/screenshots/homebrew.png b/themes/screenshots/homebrew.png index bd953ba..33eaee3 100644 Binary files a/themes/screenshots/homebrew.png and b/themes/screenshots/homebrew.png differ diff --git a/themes/screenshots/hopscotch.png b/themes/screenshots/hopscotch.png index dd43303..f2f9513 100644 Binary files a/themes/screenshots/hopscotch.png and b/themes/screenshots/hopscotch.png differ diff --git a/themes/screenshots/horizon-dark.png b/themes/screenshots/horizon-dark.png index 8f46fe6..f538816 100644 Binary files a/themes/screenshots/horizon-dark.png and b/themes/screenshots/horizon-dark.png differ diff --git a/themes/screenshots/horizon-light.png b/themes/screenshots/horizon-light.png index 511e646..f94f879 100644 Binary files a/themes/screenshots/horizon-light.png and b/themes/screenshots/horizon-light.png differ diff --git a/themes/screenshots/horizon-terminal-dark.png b/themes/screenshots/horizon-terminal-dark.png index 22f7916..531ea2f 100644 Binary files a/themes/screenshots/horizon-terminal-dark.png and b/themes/screenshots/horizon-terminal-dark.png differ diff --git a/themes/screenshots/horizon-terminal-light.png b/themes/screenshots/horizon-terminal-light.png index b2015c6..349fe17 100644 Binary files a/themes/screenshots/horizon-terminal-light.png and b/themes/screenshots/horizon-terminal-light.png differ diff --git a/themes/screenshots/humanoid-dark.png b/themes/screenshots/humanoid-dark.png index 27fdbaf..a2d7da6 100644 Binary files a/themes/screenshots/humanoid-dark.png and b/themes/screenshots/humanoid-dark.png differ diff --git a/themes/screenshots/humanoid-light.png b/themes/screenshots/humanoid-light.png index 5020ff9..3def6f9 100644 Binary files a/themes/screenshots/humanoid-light.png and b/themes/screenshots/humanoid-light.png differ diff --git a/themes/screenshots/hurtado.png b/themes/screenshots/hurtado.png index 0b3bde2..d464575 100644 Binary files a/themes/screenshots/hurtado.png and b/themes/screenshots/hurtado.png differ diff --git a/themes/screenshots/hybrid.png b/themes/screenshots/hybrid.png index b5e76fb..42cb13a 100644 Binary files a/themes/screenshots/hybrid.png and b/themes/screenshots/hybrid.png differ diff --git a/themes/screenshots/ia-dark.png b/themes/screenshots/ia-dark.png index f0118bd..134810b 100644 Binary files a/themes/screenshots/ia-dark.png and b/themes/screenshots/ia-dark.png differ diff --git a/themes/screenshots/ia-light.png b/themes/screenshots/ia-light.png index 32a5e84..65efcb1 100644 Binary files a/themes/screenshots/ia-light.png and b/themes/screenshots/ia-light.png differ diff --git a/themes/screenshots/ibm3270.png b/themes/screenshots/ibm3270.png index 8b697d3..64e1ccf 100644 Binary files a/themes/screenshots/ibm3270.png and b/themes/screenshots/ibm3270.png differ diff --git a/themes/screenshots/ic-green-ppl.png b/themes/screenshots/ic-green-ppl.png index 226d8d3..4ad5a1f 100644 Binary files a/themes/screenshots/ic-green-ppl.png and b/themes/screenshots/ic-green-ppl.png differ diff --git a/themes/screenshots/ic-orange-ppl.png b/themes/screenshots/ic-orange-ppl.png index 0448262..2e2ada4 100644 Binary files a/themes/screenshots/ic-orange-ppl.png and b/themes/screenshots/ic-orange-ppl.png differ diff --git a/themes/screenshots/iceberg-light.png b/themes/screenshots/iceberg-light.png index 547f9d9..024dbfb 100644 Binary files a/themes/screenshots/iceberg-light.png and b/themes/screenshots/iceberg-light.png differ diff --git a/themes/screenshots/icy.png b/themes/screenshots/icy.png index e332977..744e2e9 100644 Binary files a/themes/screenshots/icy.png and b/themes/screenshots/icy.png differ diff --git a/themes/screenshots/idle-toes.png b/themes/screenshots/idle-toes.png index 8d301c3..b9e21fd 100644 Binary files a/themes/screenshots/idle-toes.png and b/themes/screenshots/idle-toes.png differ diff --git a/themes/screenshots/idm_3b.png b/themes/screenshots/idm_3b.png index 0bd8217..04de766 100644 Binary files a/themes/screenshots/idm_3b.png and b/themes/screenshots/idm_3b.png differ diff --git a/themes/screenshots/ir-black.png b/themes/screenshots/ir-black.png index b1742d7..4878dee 100644 Binary files a/themes/screenshots/ir-black.png and b/themes/screenshots/ir-black.png differ diff --git a/themes/screenshots/irblack.png b/themes/screenshots/irblack.png index 3516e11..cdbdd4b 100644 Binary files a/themes/screenshots/irblack.png and b/themes/screenshots/irblack.png differ diff --git a/themes/screenshots/isotope.png b/themes/screenshots/isotope.png index 900b811..3c07889 100644 Binary files a/themes/screenshots/isotope.png and b/themes/screenshots/isotope.png differ diff --git a/themes/screenshots/jackie-brown.png b/themes/screenshots/jackie-brown.png index 154f97b..ad34261 100644 Binary files a/themes/screenshots/jackie-brown.png and b/themes/screenshots/jackie-brown.png differ diff --git a/themes/screenshots/japanesque.png b/themes/screenshots/japanesque.png index 7b5c249..28953fc 100644 Binary files a/themes/screenshots/japanesque.png and b/themes/screenshots/japanesque.png differ diff --git a/themes/screenshots/jellybeans.png b/themes/screenshots/jellybeans.png index 3442a36..015342b 100644 Binary files a/themes/screenshots/jellybeans.png and b/themes/screenshots/jellybeans.png differ diff --git a/themes/screenshots/jet-brains-darcula.png b/themes/screenshots/jet-brains-darcula.png index a5b38c5..d897e51 100644 Binary files a/themes/screenshots/jet-brains-darcula.png and b/themes/screenshots/jet-brains-darcula.png differ diff --git a/themes/screenshots/jup.png b/themes/screenshots/jup.png index c61d625..06a08d3 100644 Binary files a/themes/screenshots/jup.png and b/themes/screenshots/jup.png differ diff --git a/themes/screenshots/kibble.png b/themes/screenshots/kibble.png index bcf0226..5ae287f 100644 Binary files a/themes/screenshots/kibble.png and b/themes/screenshots/kibble.png differ diff --git a/themes/screenshots/kimber.png b/themes/screenshots/kimber.png index eb1a055..a6248e8 100644 Binary files a/themes/screenshots/kimber.png and b/themes/screenshots/kimber.png differ diff --git a/themes/screenshots/later-this-evening.png b/themes/screenshots/later-this-evening.png index ef031c2..c40620b 100644 Binary files a/themes/screenshots/later-this-evening.png and b/themes/screenshots/later-this-evening.png differ diff --git a/themes/screenshots/lavandula.png b/themes/screenshots/lavandula.png index ecb63ef..2205a7b 100644 Binary files a/themes/screenshots/lavandula.png and b/themes/screenshots/lavandula.png differ diff --git a/themes/screenshots/liquid-carbon-transparent.png b/themes/screenshots/liquid-carbon-transparent.png index 12be58a..a3e058e 100644 Binary files a/themes/screenshots/liquid-carbon-transparent.png and b/themes/screenshots/liquid-carbon-transparent.png differ diff --git a/themes/screenshots/liquid-carbon.png b/themes/screenshots/liquid-carbon.png index 59f0b03..2eff43b 100644 Binary files a/themes/screenshots/liquid-carbon.png and b/themes/screenshots/liquid-carbon.png differ diff --git a/themes/screenshots/london-tube.png b/themes/screenshots/london-tube.png index 8bcfd8c..54971df 100644 Binary files a/themes/screenshots/london-tube.png and b/themes/screenshots/london-tube.png differ diff --git a/themes/screenshots/macintosh.png b/themes/screenshots/macintosh.png index a20068a..8d7f770 100644 Binary files a/themes/screenshots/macintosh.png and b/themes/screenshots/macintosh.png differ diff --git a/themes/screenshots/maia.png b/themes/screenshots/maia.png index 4ab6c77..c27a778 100644 Binary files a/themes/screenshots/maia.png and b/themes/screenshots/maia.png differ diff --git a/themes/screenshots/man-page.png b/themes/screenshots/man-page.png index 2e1cdc5..8d2b7bb 100644 Binary files a/themes/screenshots/man-page.png and b/themes/screenshots/man-page.png differ diff --git a/themes/screenshots/mar.png b/themes/screenshots/mar.png index 387b8b3..e96f726 100644 Binary files a/themes/screenshots/mar.png and b/themes/screenshots/mar.png differ diff --git a/themes/screenshots/marrakesh.png b/themes/screenshots/marrakesh.png index 816a51d..1a48d03 100644 Binary files a/themes/screenshots/marrakesh.png and b/themes/screenshots/marrakesh.png differ diff --git a/themes/screenshots/materia.png b/themes/screenshots/materia.png index 53ada9d..f12f0cd 100644 Binary files a/themes/screenshots/materia.png and b/themes/screenshots/materia.png differ diff --git a/themes/screenshots/material-dark.png b/themes/screenshots/material-dark.png index dcd777e..8ca2c61 100644 Binary files a/themes/screenshots/material-dark.png and b/themes/screenshots/material-dark.png differ diff --git a/themes/screenshots/material-darker.png b/themes/screenshots/material-darker.png index af6f66c..1bb7cc1 100644 Binary files a/themes/screenshots/material-darker.png and b/themes/screenshots/material-darker.png differ diff --git a/themes/screenshots/material-lighter.png b/themes/screenshots/material-lighter.png index 0a6c164..7c1646a 100644 Binary files a/themes/screenshots/material-lighter.png and b/themes/screenshots/material-lighter.png differ diff --git a/themes/screenshots/material-palenight.png b/themes/screenshots/material-palenight.png index 893d48b..5e76ddd 100644 Binary files a/themes/screenshots/material-palenight.png and b/themes/screenshots/material-palenight.png differ diff --git a/themes/screenshots/material-vivid.png b/themes/screenshots/material-vivid.png index fd8b524..141a072 100644 Binary files a/themes/screenshots/material-vivid.png and b/themes/screenshots/material-vivid.png differ diff --git a/themes/screenshots/material.png b/themes/screenshots/material.png index d2da081..85aa349 100644 Binary files a/themes/screenshots/material.png and b/themes/screenshots/material.png differ diff --git a/themes/screenshots/mathias.png b/themes/screenshots/mathias.png index b1a3f52..14db433 100644 Binary files a/themes/screenshots/mathias.png and b/themes/screenshots/mathias.png differ diff --git a/themes/screenshots/medallion.png b/themes/screenshots/medallion.png index 0ddd781..caeb04b 100644 Binary files a/themes/screenshots/medallion.png and b/themes/screenshots/medallion.png differ diff --git a/themes/screenshots/mellow-purple.png b/themes/screenshots/mellow-purple.png index d5ad3a2..f68037e 100644 Binary files a/themes/screenshots/mellow-purple.png and b/themes/screenshots/mellow-purple.png differ diff --git a/themes/screenshots/mexico-light.png b/themes/screenshots/mexico-light.png index 9b143b1..a2a39eb 100644 Binary files a/themes/screenshots/mexico-light.png and b/themes/screenshots/mexico-light.png differ diff --git a/themes/screenshots/miramare.png b/themes/screenshots/miramare.png index 62c8804..e331ea7 100644 Binary files a/themes/screenshots/miramare.png and b/themes/screenshots/miramare.png differ diff --git a/themes/screenshots/misterioso.png b/themes/screenshots/misterioso.png index 8eae040..50e6fca 100644 Binary files a/themes/screenshots/misterioso.png and b/themes/screenshots/misterioso.png differ diff --git a/themes/screenshots/miu.png b/themes/screenshots/miu.png index 5285a11..94d3e25 100644 Binary files a/themes/screenshots/miu.png and b/themes/screenshots/miu.png differ diff --git a/themes/screenshots/mocha.png b/themes/screenshots/mocha.png index efd1dcd..52d4c22 100644 Binary files a/themes/screenshots/mocha.png and b/themes/screenshots/mocha.png differ diff --git a/themes/screenshots/molokai.png b/themes/screenshots/molokai.png index 1de5872..7556bb7 100644 Binary files a/themes/screenshots/molokai.png and b/themes/screenshots/molokai.png differ diff --git a/themes/screenshots/mona-lisa.png b/themes/screenshots/mona-lisa.png index b44733c..839dc41 100644 Binary files a/themes/screenshots/mona-lisa.png and b/themes/screenshots/mona-lisa.png differ diff --git a/themes/screenshots/mono-amber.png b/themes/screenshots/mono-amber.png index 2ccb35f..c771031 100644 Binary files a/themes/screenshots/mono-amber.png and b/themes/screenshots/mono-amber.png differ diff --git a/themes/screenshots/mono-cyan.png b/themes/screenshots/mono-cyan.png index 4c83392..f116c86 100644 Binary files a/themes/screenshots/mono-cyan.png and b/themes/screenshots/mono-cyan.png differ diff --git a/themes/screenshots/mono-green.png b/themes/screenshots/mono-green.png index 7f95aec..1d7e64a 100644 Binary files a/themes/screenshots/mono-green.png and b/themes/screenshots/mono-green.png differ diff --git a/themes/screenshots/mono-red.png b/themes/screenshots/mono-red.png index 85d2003..961ec46 100644 Binary files a/themes/screenshots/mono-red.png and b/themes/screenshots/mono-red.png differ diff --git a/themes/screenshots/mono-white.png b/themes/screenshots/mono-white.png index 124adc0..680b4b9 100644 Binary files a/themes/screenshots/mono-white.png and b/themes/screenshots/mono-white.png differ diff --git a/themes/screenshots/mono-yellow.png b/themes/screenshots/mono-yellow.png index a6b68a0..d22e901 100644 Binary files a/themes/screenshots/mono-yellow.png and b/themes/screenshots/mono-yellow.png differ diff --git a/themes/screenshots/monokai-dark.png b/themes/screenshots/monokai-dark.png index deb4a03..6a3d51d 100644 Binary files a/themes/screenshots/monokai-dark.png and b/themes/screenshots/monokai-dark.png differ diff --git a/themes/screenshots/monokai-soda.png b/themes/screenshots/monokai-soda.png index 5d1995b..6e3aa4b 100644 Binary files a/themes/screenshots/monokai-soda.png and b/themes/screenshots/monokai-soda.png differ diff --git a/themes/screenshots/monokai.png b/themes/screenshots/monokai.png index c21888a..e86a3e3 100644 Binary files a/themes/screenshots/monokai.png and b/themes/screenshots/monokai.png differ diff --git a/themes/screenshots/mountaineer-grey.png b/themes/screenshots/mountaineer-grey.png index 4ae9084..14d656e 100644 Binary files a/themes/screenshots/mountaineer-grey.png and b/themes/screenshots/mountaineer-grey.png differ diff --git a/themes/screenshots/mountaineer.png b/themes/screenshots/mountaineer.png index 742a586..533871f 100644 Binary files a/themes/screenshots/mountaineer.png and b/themes/screenshots/mountaineer.png differ diff --git a/themes/screenshots/n0tch2k.png b/themes/screenshots/n0tch2k.png index fbf7c72..9449cdb 100644 Binary files a/themes/screenshots/n0tch2k.png and b/themes/screenshots/n0tch2k.png differ diff --git a/themes/screenshots/nebula.png b/themes/screenshots/nebula.png index 3606933..4294796 100644 Binary files a/themes/screenshots/nebula.png and b/themes/screenshots/nebula.png differ diff --git a/themes/screenshots/neon-night.png b/themes/screenshots/neon-night.png index caf4840..7923f51 100644 Binary files a/themes/screenshots/neon-night.png and b/themes/screenshots/neon-night.png differ diff --git a/themes/screenshots/neopolitan.png b/themes/screenshots/neopolitan.png index 89c2fda..df67359 100644 Binary files a/themes/screenshots/neopolitan.png and b/themes/screenshots/neopolitan.png differ diff --git a/themes/screenshots/nep.png b/themes/screenshots/nep.png index 84ec243..c52b16b 100644 Binary files a/themes/screenshots/nep.png and b/themes/screenshots/nep.png differ diff --git a/themes/screenshots/neutron.png b/themes/screenshots/neutron.png index 5c67d1b..4888443 100644 Binary files a/themes/screenshots/neutron.png and b/themes/screenshots/neutron.png differ diff --git a/themes/screenshots/nightfly.png b/themes/screenshots/nightfly.png index 71cda04..6950233 100644 Binary files a/themes/screenshots/nightfly.png and b/themes/screenshots/nightfly.png differ diff --git a/themes/screenshots/nightlion-v1.png b/themes/screenshots/nightlion-v1.png index 11bc0f4..e140ed6 100644 Binary files a/themes/screenshots/nightlion-v1.png and b/themes/screenshots/nightlion-v1.png differ diff --git a/themes/screenshots/nightlion-v2.png b/themes/screenshots/nightlion-v2.png index 4a74b17..01763e7 100644 Binary files a/themes/screenshots/nightlion-v2.png and b/themes/screenshots/nightlion-v2.png differ diff --git a/themes/screenshots/nighty.png b/themes/screenshots/nighty.png index a27a0ac..35f0dc2 100644 Binary files a/themes/screenshots/nighty.png and b/themes/screenshots/nighty.png differ diff --git a/themes/screenshots/nord-alt.png b/themes/screenshots/nord-alt.png index 42f3de4..54851c1 100644 Binary files a/themes/screenshots/nord-alt.png and b/themes/screenshots/nord-alt.png differ diff --git a/themes/screenshots/nord-light.png b/themes/screenshots/nord-light.png index e72af37..30a3bb8 100644 Binary files a/themes/screenshots/nord-light.png and b/themes/screenshots/nord-light.png differ diff --git a/themes/screenshots/nord.png b/themes/screenshots/nord.png index ee17510..eb8db9f 100644 Binary files a/themes/screenshots/nord.png and b/themes/screenshots/nord.png differ diff --git a/themes/screenshots/nova.png b/themes/screenshots/nova.png index 2f4c045..4851697 100644 Binary files a/themes/screenshots/nova.png and b/themes/screenshots/nova.png differ diff --git a/themes/screenshots/novel.png b/themes/screenshots/novel.png index d589388..39fef9e 100644 Binary files a/themes/screenshots/novel.png and b/themes/screenshots/novel.png differ diff --git a/themes/screenshots/nushell-dark.png b/themes/screenshots/nushell-dark.png index 37320f9..3d69abd 100644 Binary files a/themes/screenshots/nushell-dark.png and b/themes/screenshots/nushell-dark.png differ diff --git a/themes/screenshots/nushell-light.png b/themes/screenshots/nushell-light.png index f5f8000..a6ba4c7 100644 Binary files a/themes/screenshots/nushell-light.png and b/themes/screenshots/nushell-light.png differ diff --git a/themes/screenshots/obsidian.png b/themes/screenshots/obsidian.png index 6d334af..ed110b8 100644 Binary files a/themes/screenshots/obsidian.png and b/themes/screenshots/obsidian.png differ diff --git a/themes/screenshots/ocean-dark.png b/themes/screenshots/ocean-dark.png index 44a84f8..c510520 100644 Binary files a/themes/screenshots/ocean-dark.png and b/themes/screenshots/ocean-dark.png differ diff --git a/themes/screenshots/ocean.png b/themes/screenshots/ocean.png index ee3ea93..60b7f3f 100644 Binary files a/themes/screenshots/ocean.png and b/themes/screenshots/ocean.png differ diff --git a/themes/screenshots/oceanic-material.png b/themes/screenshots/oceanic-material.png index 15d5e45..b378f26 100644 Binary files a/themes/screenshots/oceanic-material.png and b/themes/screenshots/oceanic-material.png differ diff --git a/themes/screenshots/oceanic-next.png b/themes/screenshots/oceanic-next.png index f260636..f3a3697 100644 Binary files a/themes/screenshots/oceanic-next.png and b/themes/screenshots/oceanic-next.png differ diff --git a/themes/screenshots/oceanicnext.png b/themes/screenshots/oceanicnext.png index f33a979..45d6eb4 100644 Binary files a/themes/screenshots/oceanicnext.png and b/themes/screenshots/oceanicnext.png differ diff --git a/themes/screenshots/ollie.png b/themes/screenshots/ollie.png index 218c1db..0b81b3a 100644 Binary files a/themes/screenshots/ollie.png and b/themes/screenshots/ollie.png differ diff --git a/themes/screenshots/one-dark.png b/themes/screenshots/one-dark.png index d25bc7c..d2c1c7d 100644 Binary files a/themes/screenshots/one-dark.png and b/themes/screenshots/one-dark.png differ diff --git a/themes/screenshots/one-half-black.png b/themes/screenshots/one-half-black.png index d62f431..66d3d57 100644 Binary files a/themes/screenshots/one-half-black.png and b/themes/screenshots/one-half-black.png differ diff --git a/themes/screenshots/one-half-light.png b/themes/screenshots/one-half-light.png index a6a3e9d..144ca86 100644 Binary files a/themes/screenshots/one-half-light.png and b/themes/screenshots/one-half-light.png differ diff --git a/themes/screenshots/one-light.png b/themes/screenshots/one-light.png index 935d340..8f3697d 100644 Binary files a/themes/screenshots/one-light.png and b/themes/screenshots/one-light.png differ diff --git a/themes/screenshots/onedark.png b/themes/screenshots/onedark.png index a78b10f..03ed5eb 100644 Binary files a/themes/screenshots/onedark.png and b/themes/screenshots/onedark.png differ diff --git a/themes/screenshots/orbital.png b/themes/screenshots/orbital.png index e33c29a..ffdf8f7 100644 Binary files a/themes/screenshots/orbital.png and b/themes/screenshots/orbital.png differ diff --git a/themes/screenshots/outrun-dark.png b/themes/screenshots/outrun-dark.png index 97193d7..e155f94 100644 Binary files a/themes/screenshots/outrun-dark.png and b/themes/screenshots/outrun-dark.png differ diff --git a/themes/screenshots/pali.png b/themes/screenshots/pali.png index de0074f..7addf09 100644 Binary files a/themes/screenshots/pali.png and b/themes/screenshots/pali.png differ diff --git a/themes/screenshots/palmtree.png b/themes/screenshots/palmtree.png index b5ffef3..cf08d05 100644 Binary files a/themes/screenshots/palmtree.png and b/themes/screenshots/palmtree.png differ diff --git a/themes/screenshots/papercolor-dark.png b/themes/screenshots/papercolor-dark.png index 2e21a0b..ec34eec 100644 Binary files a/themes/screenshots/papercolor-dark.png and b/themes/screenshots/papercolor-dark.png differ diff --git a/themes/screenshots/papercolor-light.png b/themes/screenshots/papercolor-light.png index c4cb703..7641a68 100644 Binary files a/themes/screenshots/papercolor-light.png and b/themes/screenshots/papercolor-light.png differ diff --git a/themes/screenshots/paraiso-dark.png b/themes/screenshots/paraiso-dark.png index 45af715..60a3b18 100644 Binary files a/themes/screenshots/paraiso-dark.png and b/themes/screenshots/paraiso-dark.png differ diff --git a/themes/screenshots/paraiso.png b/themes/screenshots/paraiso.png index cfbd002..3ad5bc7 100644 Binary files a/themes/screenshots/paraiso.png and b/themes/screenshots/paraiso.png differ diff --git a/themes/screenshots/pasque.png b/themes/screenshots/pasque.png index 31b6753..5c29b79 100644 Binary files a/themes/screenshots/pasque.png and b/themes/screenshots/pasque.png differ diff --git a/themes/screenshots/paul-millr.png b/themes/screenshots/paul-millr.png index a104a55..b57e991 100644 Binary files a/themes/screenshots/paul-millr.png and b/themes/screenshots/paul-millr.png differ diff --git a/themes/screenshots/pencil-dark.png b/themes/screenshots/pencil-dark.png index 2e64429..e860bc6 100644 Binary files a/themes/screenshots/pencil-dark.png and b/themes/screenshots/pencil-dark.png differ diff --git a/themes/screenshots/pencil-light.png b/themes/screenshots/pencil-light.png index 6cc1356..78efbef 100644 Binary files a/themes/screenshots/pencil-light.png and b/themes/screenshots/pencil-light.png differ diff --git a/themes/screenshots/peppermint.png b/themes/screenshots/peppermint.png index 9ab5e64..4747cc9 100644 Binary files a/themes/screenshots/peppermint.png and b/themes/screenshots/peppermint.png differ diff --git a/themes/screenshots/phd.png b/themes/screenshots/phd.png index 72da564..8977430 100644 Binary files a/themes/screenshots/phd.png and b/themes/screenshots/phd.png differ diff --git a/themes/screenshots/piatto-light.png b/themes/screenshots/piatto-light.png index a4ea433..4f04d08 100644 Binary files a/themes/screenshots/piatto-light.png and b/themes/screenshots/piatto-light.png differ diff --git a/themes/screenshots/pico.png b/themes/screenshots/pico.png index 646b9c5..19b519e 100644 Binary files a/themes/screenshots/pico.png and b/themes/screenshots/pico.png differ diff --git a/themes/screenshots/pnevma.png b/themes/screenshots/pnevma.png index 986e940..fad6f87 100644 Binary files a/themes/screenshots/pnevma.png and b/themes/screenshots/pnevma.png differ diff --git a/themes/screenshots/pop.png b/themes/screenshots/pop.png index 3cadd38..2f3cb7a 100644 Binary files a/themes/screenshots/pop.png and b/themes/screenshots/pop.png differ diff --git a/themes/screenshots/porple.png b/themes/screenshots/porple.png index 2e5b230..0d15f66 100644 Binary files a/themes/screenshots/porple.png and b/themes/screenshots/porple.png differ diff --git a/themes/screenshots/pro.png b/themes/screenshots/pro.png index 3959eef..e2ad434 100644 Binary files a/themes/screenshots/pro.png and b/themes/screenshots/pro.png differ diff --git a/themes/screenshots/railscasts.png b/themes/screenshots/railscasts.png index aed4d61..a11e82b 100644 Binary files a/themes/screenshots/railscasts.png and b/themes/screenshots/railscasts.png differ diff --git a/themes/screenshots/rebecca.png b/themes/screenshots/rebecca.png index 4a53992..ce01c88 100644 Binary files a/themes/screenshots/rebecca.png and b/themes/screenshots/rebecca.png differ diff --git a/themes/screenshots/red-alert.png b/themes/screenshots/red-alert.png index c195ec0..bc21df4 100644 Binary files a/themes/screenshots/red-alert.png and b/themes/screenshots/red-alert.png differ diff --git a/themes/screenshots/red-sands.png b/themes/screenshots/red-sands.png index 74cbe75..8b9efe3 100644 Binary files a/themes/screenshots/red-sands.png and b/themes/screenshots/red-sands.png differ diff --git a/themes/screenshots/relaxed-afterglow.png b/themes/screenshots/relaxed-afterglow.png index 3b099ab..bb3ee19 100644 Binary files a/themes/screenshots/relaxed-afterglow.png and b/themes/screenshots/relaxed-afterglow.png differ diff --git a/themes/screenshots/renault-style-light.png b/themes/screenshots/renault-style-light.png index a6aad1e..01bc891 100644 Binary files a/themes/screenshots/renault-style-light.png and b/themes/screenshots/renault-style-light.png differ diff --git a/themes/screenshots/rippedcasts.png b/themes/screenshots/rippedcasts.png index cd1d6d5..699e612 100644 Binary files a/themes/screenshots/rippedcasts.png and b/themes/screenshots/rippedcasts.png differ diff --git a/themes/screenshots/rose-pine-dawn.png b/themes/screenshots/rose-pine-dawn.png index a9ac583..3ad2269 100644 Binary files a/themes/screenshots/rose-pine-dawn.png and b/themes/screenshots/rose-pine-dawn.png differ diff --git a/themes/screenshots/rose-pine-moon.png b/themes/screenshots/rose-pine-moon.png index 81ec122..147ab9c 100644 Binary files a/themes/screenshots/rose-pine-moon.png and b/themes/screenshots/rose-pine-moon.png differ diff --git a/themes/screenshots/rose-pine.png b/themes/screenshots/rose-pine.png index 984cbd5..80ea5a2 100644 Binary files a/themes/screenshots/rose-pine.png and b/themes/screenshots/rose-pine.png differ diff --git a/themes/screenshots/royal.png b/themes/screenshots/royal.png index a8e1ba2..a0cb03c 100644 Binary files a/themes/screenshots/royal.png and b/themes/screenshots/royal.png differ diff --git a/themes/screenshots/sagelight.png b/themes/screenshots/sagelight.png index 8972e91..0e324d0 100644 Binary files a/themes/screenshots/sagelight.png and b/themes/screenshots/sagelight.png differ diff --git a/themes/screenshots/sandcastle.png b/themes/screenshots/sandcastle.png index f048677..84af832 100644 Binary files a/themes/screenshots/sandcastle.png and b/themes/screenshots/sandcastle.png differ diff --git a/themes/screenshots/sat.png b/themes/screenshots/sat.png index 44e9441..68bda04 100644 Binary files a/themes/screenshots/sat.png and b/themes/screenshots/sat.png differ diff --git a/themes/screenshots/sea-shells.png b/themes/screenshots/sea-shells.png index 6ddf59c..cba76f2 100644 Binary files a/themes/screenshots/sea-shells.png and b/themes/screenshots/sea-shells.png differ diff --git a/themes/screenshots/seafoam-pastel.png b/themes/screenshots/seafoam-pastel.png index a7eb0b1..2ad2a04 100644 Binary files a/themes/screenshots/seafoam-pastel.png and b/themes/screenshots/seafoam-pastel.png differ diff --git a/themes/screenshots/selenized-black.png b/themes/screenshots/selenized-black.png index 0cfaa89..ba7d275 100644 Binary files a/themes/screenshots/selenized-black.png and b/themes/screenshots/selenized-black.png differ diff --git a/themes/screenshots/selenized-dark.png b/themes/screenshots/selenized-dark.png index df46023..824cede 100644 Binary files a/themes/screenshots/selenized-dark.png and b/themes/screenshots/selenized-dark.png differ diff --git a/themes/screenshots/selenized-light.png b/themes/screenshots/selenized-light.png index c2a7c9c..c16dd25 100644 Binary files a/themes/screenshots/selenized-light.png and b/themes/screenshots/selenized-light.png differ diff --git a/themes/screenshots/selenized-white.png b/themes/screenshots/selenized-white.png index 3cd3c4d..3f5c465 100644 Binary files a/themes/screenshots/selenized-white.png and b/themes/screenshots/selenized-white.png differ diff --git a/themes/screenshots/seoul256.png b/themes/screenshots/seoul256.png index 318add9..9140e70 100644 Binary files a/themes/screenshots/seoul256.png and b/themes/screenshots/seoul256.png differ diff --git a/themes/screenshots/seti-ui.png b/themes/screenshots/seti-ui.png index 5ced413..4fa1100 100644 Binary files a/themes/screenshots/seti-ui.png and b/themes/screenshots/seti-ui.png differ diff --git a/themes/screenshots/seti.png b/themes/screenshots/seti.png index dd5cd8d..a98f7cf 100644 Binary files a/themes/screenshots/seti.png and b/themes/screenshots/seti.png differ diff --git a/themes/screenshots/shaman.png b/themes/screenshots/shaman.png index 59f488a..adb1a71 100644 Binary files a/themes/screenshots/shaman.png and b/themes/screenshots/shaman.png differ diff --git a/themes/screenshots/shapeshifter.png b/themes/screenshots/shapeshifter.png index 375f0be..4582a3d 100644 Binary files a/themes/screenshots/shapeshifter.png and b/themes/screenshots/shapeshifter.png differ diff --git a/themes/screenshots/shel.png b/themes/screenshots/shel.png index 4a92e76..d05133c 100644 Binary files a/themes/screenshots/shel.png and b/themes/screenshots/shel.png differ diff --git a/themes/screenshots/sierra.png b/themes/screenshots/sierra.png index 2abfc77..68bec89 100644 Binary files a/themes/screenshots/sierra.png and b/themes/screenshots/sierra.png differ diff --git a/themes/screenshots/silk-dark.png b/themes/screenshots/silk-dark.png index e2e8c3d..b790292 100644 Binary files a/themes/screenshots/silk-dark.png and b/themes/screenshots/silk-dark.png differ diff --git a/themes/screenshots/silk-light.png b/themes/screenshots/silk-light.png index 22d2c8f..558b9d3 100644 Binary files a/themes/screenshots/silk-light.png and b/themes/screenshots/silk-light.png differ diff --git a/themes/screenshots/slate.png b/themes/screenshots/slate.png index 43ae112..60b66ce 100644 Binary files a/themes/screenshots/slate.png and b/themes/screenshots/slate.png differ diff --git a/themes/screenshots/smyck.png b/themes/screenshots/smyck.png index dc280ff..09d3673 100644 Binary files a/themes/screenshots/smyck.png and b/themes/screenshots/smyck.png differ diff --git a/themes/screenshots/snazzy.png b/themes/screenshots/snazzy.png index 22d1883..809521a 100644 Binary files a/themes/screenshots/snazzy.png and b/themes/screenshots/snazzy.png differ diff --git a/themes/screenshots/snow-dark.png b/themes/screenshots/snow-dark.png index b7c08a5..64c38d5 100644 Binary files a/themes/screenshots/snow-dark.png and b/themes/screenshots/snow-dark.png differ diff --git a/themes/screenshots/snow-light.png b/themes/screenshots/snow-light.png index e7a2c05..eb3803c 100644 Binary files a/themes/screenshots/snow-light.png and b/themes/screenshots/snow-light.png differ diff --git a/themes/screenshots/soft-server.png b/themes/screenshots/soft-server.png index a4f5df4..270dae5 100644 Binary files a/themes/screenshots/soft-server.png and b/themes/screenshots/soft-server.png differ diff --git a/themes/screenshots/solar-flare.png b/themes/screenshots/solar-flare.png index 3c1e32a..0b2fc3f 100644 Binary files a/themes/screenshots/solar-flare.png and b/themes/screenshots/solar-flare.png differ diff --git a/themes/screenshots/solarflare-light.png b/themes/screenshots/solarflare-light.png index 4efbdf4..7001f89 100644 Binary files a/themes/screenshots/solarflare-light.png and b/themes/screenshots/solarflare-light.png differ diff --git a/themes/screenshots/solarflare.png b/themes/screenshots/solarflare.png index c12dc99..2b9a359 100644 Binary files a/themes/screenshots/solarflare.png and b/themes/screenshots/solarflare.png differ diff --git a/themes/screenshots/solarized-darcula.png b/themes/screenshots/solarized-darcula.png index 5969f3b..efb7310 100644 Binary files a/themes/screenshots/solarized-darcula.png and b/themes/screenshots/solarized-darcula.png differ diff --git a/themes/screenshots/solarized-dark-higher-contrast.png b/themes/screenshots/solarized-dark-higher-contrast.png index 31fe747..6d67e08 100644 Binary files a/themes/screenshots/solarized-dark-higher-contrast.png and b/themes/screenshots/solarized-dark-higher-contrast.png differ diff --git a/themes/screenshots/solarized-dark.png b/themes/screenshots/solarized-dark.png index 18f27c6..562ef67 100644 Binary files a/themes/screenshots/solarized-dark.png and b/themes/screenshots/solarized-dark.png differ diff --git a/themes/screenshots/solarized-light.png b/themes/screenshots/solarized-light.png index 4250534..c1fe482 100644 Binary files a/themes/screenshots/solarized-light.png and b/themes/screenshots/solarized-light.png differ diff --git a/themes/screenshots/source-code-x.png b/themes/screenshots/source-code-x.png index fd4e35e..d97303a 100644 Binary files a/themes/screenshots/source-code-x.png and b/themes/screenshots/source-code-x.png differ diff --git a/themes/screenshots/sourcerer.png b/themes/screenshots/sourcerer.png index b821f6c..a05b988 100644 Binary files a/themes/screenshots/sourcerer.png and b/themes/screenshots/sourcerer.png differ diff --git a/themes/screenshots/sourcerer2.png b/themes/screenshots/sourcerer2.png index d5d2090..2a6817a 100644 Binary files a/themes/screenshots/sourcerer2.png and b/themes/screenshots/sourcerer2.png differ diff --git a/themes/screenshots/spaceduck.png b/themes/screenshots/spaceduck.png index bb4da8c..e004232 100644 Binary files a/themes/screenshots/spaceduck.png and b/themes/screenshots/spaceduck.png differ diff --git a/themes/screenshots/spacedust.png b/themes/screenshots/spacedust.png index f479e4f..02f394b 100644 Binary files a/themes/screenshots/spacedust.png and b/themes/screenshots/spacedust.png differ diff --git a/themes/screenshots/spacegray-eighties-dull.png b/themes/screenshots/spacegray-eighties-dull.png index e318acf..30eddf1 100644 Binary files a/themes/screenshots/spacegray-eighties-dull.png and b/themes/screenshots/spacegray-eighties-dull.png differ diff --git a/themes/screenshots/spacegray-eighties.png b/themes/screenshots/spacegray-eighties.png index 524a01f..caaecd4 100644 Binary files a/themes/screenshots/spacegray-eighties.png and b/themes/screenshots/spacegray-eighties.png differ diff --git a/themes/screenshots/spacegray.png b/themes/screenshots/spacegray.png index 2c26266..4a71687 100644 Binary files a/themes/screenshots/spacegray.png and b/themes/screenshots/spacegray.png differ diff --git a/themes/screenshots/spacemacs.png b/themes/screenshots/spacemacs.png index 8ba4b0e..36be859 100644 Binary files a/themes/screenshots/spacemacs.png and b/themes/screenshots/spacemacs.png differ diff --git a/themes/screenshots/spiderman.png b/themes/screenshots/spiderman.png index 5a31287..1507c24 100644 Binary files a/themes/screenshots/spiderman.png and b/themes/screenshots/spiderman.png differ diff --git a/themes/screenshots/spring.png b/themes/screenshots/spring.png index c9fe1ba..ccb069b 100644 Binary files a/themes/screenshots/spring.png and b/themes/screenshots/spring.png differ diff --git a/themes/screenshots/square.png b/themes/screenshots/square.png index 8b331ab..264b205 100644 Binary files a/themes/screenshots/square.png and b/themes/screenshots/square.png differ diff --git a/themes/screenshots/srcery.png b/themes/screenshots/srcery.png index cf4f3e5..d72ec7f 100644 Binary files a/themes/screenshots/srcery.png and b/themes/screenshots/srcery.png differ diff --git a/themes/screenshots/substrata.png b/themes/screenshots/substrata.png index 7a52335..7788ef4 100644 Binary files a/themes/screenshots/substrata.png and b/themes/screenshots/substrata.png differ diff --git a/themes/screenshots/summercamp.png b/themes/screenshots/summercamp.png index 0b5a8b5..91c55ae 100644 Binary files a/themes/screenshots/summercamp.png and b/themes/screenshots/summercamp.png differ diff --git a/themes/screenshots/summerfruit-dark.png b/themes/screenshots/summerfruit-dark.png index ab41758..58d0333 100644 Binary files a/themes/screenshots/summerfruit-dark.png and b/themes/screenshots/summerfruit-dark.png differ diff --git a/themes/screenshots/summerfruit-light.png b/themes/screenshots/summerfruit-light.png index e248fe9..372aa3b 100644 Binary files a/themes/screenshots/summerfruit-light.png and b/themes/screenshots/summerfruit-light.png differ diff --git a/themes/screenshots/sundried.png b/themes/screenshots/sundried.png index 9ab494e..e6ca458 100644 Binary files a/themes/screenshots/sundried.png and b/themes/screenshots/sundried.png differ diff --git a/themes/screenshots/symphonic.png b/themes/screenshots/symphonic.png index b95997d..2e6906f 100644 Binary files a/themes/screenshots/symphonic.png and b/themes/screenshots/symphonic.png differ diff --git a/themes/screenshots/synth-midnight-dark.png b/themes/screenshots/synth-midnight-dark.png index e6e6cad..7509229 100644 Binary files a/themes/screenshots/synth-midnight-dark.png and b/themes/screenshots/synth-midnight-dark.png differ diff --git a/themes/screenshots/synth-midnight-light.png b/themes/screenshots/synth-midnight-light.png index 67aa0ff..5b958ee 100644 Binary files a/themes/screenshots/synth-midnight-light.png and b/themes/screenshots/synth-midnight-light.png differ diff --git a/themes/screenshots/tango-dark.png b/themes/screenshots/tango-dark.png index dcaa1df..84b5585 100644 Binary files a/themes/screenshots/tango-dark.png and b/themes/screenshots/tango-dark.png differ diff --git a/themes/screenshots/tango-light.png b/themes/screenshots/tango-light.png index 3baeb6a..4ad734e 100644 Binary files a/themes/screenshots/tango-light.png and b/themes/screenshots/tango-light.png differ diff --git a/themes/screenshots/tango.png b/themes/screenshots/tango.png index 4a5f7a3..80893f6 100644 Binary files a/themes/screenshots/tango.png and b/themes/screenshots/tango.png differ diff --git a/themes/screenshots/teerb.png b/themes/screenshots/teerb.png index 2e30f30..cbcaddc 100644 Binary files a/themes/screenshots/teerb.png and b/themes/screenshots/teerb.png differ diff --git a/themes/screenshots/tempus-autumn.png b/themes/screenshots/tempus-autumn.png index d2b80e2..c703ca1 100644 Binary files a/themes/screenshots/tempus-autumn.png and b/themes/screenshots/tempus-autumn.png differ diff --git a/themes/screenshots/tempus-classic.png b/themes/screenshots/tempus-classic.png index ea760d8..46f1f7b 100644 Binary files a/themes/screenshots/tempus-classic.png and b/themes/screenshots/tempus-classic.png differ diff --git a/themes/screenshots/tempus-dawn.png b/themes/screenshots/tempus-dawn.png index 8eb2a72..f63a383 100644 Binary files a/themes/screenshots/tempus-dawn.png and b/themes/screenshots/tempus-dawn.png differ diff --git a/themes/screenshots/tempus-day.png b/themes/screenshots/tempus-day.png index 8078cd0..a68e57b 100644 Binary files a/themes/screenshots/tempus-day.png and b/themes/screenshots/tempus-day.png differ diff --git a/themes/screenshots/tempus-dusk.png b/themes/screenshots/tempus-dusk.png index dfcf7a4..a7c6094 100644 Binary files a/themes/screenshots/tempus-dusk.png and b/themes/screenshots/tempus-dusk.png differ diff --git a/themes/screenshots/tempus-fugit.png b/themes/screenshots/tempus-fugit.png index 321f38e..e9d55da 100644 Binary files a/themes/screenshots/tempus-fugit.png and b/themes/screenshots/tempus-fugit.png differ diff --git a/themes/screenshots/tempus-future.png b/themes/screenshots/tempus-future.png index 6089ca5..daa7f72 100644 Binary files a/themes/screenshots/tempus-future.png and b/themes/screenshots/tempus-future.png differ diff --git a/themes/screenshots/tempus-night.png b/themes/screenshots/tempus-night.png index d99309d..0fc0edf 100644 Binary files a/themes/screenshots/tempus-night.png and b/themes/screenshots/tempus-night.png differ diff --git a/themes/screenshots/tempus-past.png b/themes/screenshots/tempus-past.png index 3487122..ce77c47 100644 Binary files a/themes/screenshots/tempus-past.png and b/themes/screenshots/tempus-past.png differ diff --git a/themes/screenshots/tempus-rift.png b/themes/screenshots/tempus-rift.png index c286488..3c8437d 100644 Binary files a/themes/screenshots/tempus-rift.png and b/themes/screenshots/tempus-rift.png differ diff --git a/themes/screenshots/tempus-spring.png b/themes/screenshots/tempus-spring.png index 78a8186..67f7965 100644 Binary files a/themes/screenshots/tempus-spring.png and b/themes/screenshots/tempus-spring.png differ diff --git a/themes/screenshots/tempus-summer.png b/themes/screenshots/tempus-summer.png index c6d7d9a..6a2b7de 100644 Binary files a/themes/screenshots/tempus-summer.png and b/themes/screenshots/tempus-summer.png differ diff --git a/themes/screenshots/tempus-tempest.png b/themes/screenshots/tempus-tempest.png index 95323e5..e2c050c 100644 Binary files a/themes/screenshots/tempus-tempest.png and b/themes/screenshots/tempus-tempest.png differ diff --git a/themes/screenshots/tempus-totus.png b/themes/screenshots/tempus-totus.png index 915be4b..aa940a3 100644 Binary files a/themes/screenshots/tempus-totus.png and b/themes/screenshots/tempus-totus.png differ diff --git a/themes/screenshots/tempus-warp.png b/themes/screenshots/tempus-warp.png index 7c232f1..d2a093b 100644 Binary files a/themes/screenshots/tempus-warp.png and b/themes/screenshots/tempus-warp.png differ diff --git a/themes/screenshots/tempus-winter.png b/themes/screenshots/tempus-winter.png index e459c3f..35caf85 100644 Binary files a/themes/screenshots/tempus-winter.png and b/themes/screenshots/tempus-winter.png differ diff --git a/themes/screenshots/tender.png b/themes/screenshots/tender.png index c4aaec6..9f90f23 100644 Binary files a/themes/screenshots/tender.png and b/themes/screenshots/tender.png differ diff --git a/themes/screenshots/terminal-basic.png b/themes/screenshots/terminal-basic.png index 0bc894d..cb4eca7 100644 Binary files a/themes/screenshots/terminal-basic.png and b/themes/screenshots/terminal-basic.png differ diff --git a/themes/screenshots/terminix-dark.png b/themes/screenshots/terminix-dark.png index b227d56..604702e 100644 Binary files a/themes/screenshots/terminix-dark.png and b/themes/screenshots/terminix-dark.png differ diff --git a/themes/screenshots/thayer-bright.png b/themes/screenshots/thayer-bright.png index 3d4d56e..43fb2fd 100644 Binary files a/themes/screenshots/thayer-bright.png and b/themes/screenshots/thayer-bright.png differ diff --git a/themes/screenshots/the-hulk.png b/themes/screenshots/the-hulk.png index d599b08..8cb40ad 100644 Binary files a/themes/screenshots/the-hulk.png and b/themes/screenshots/the-hulk.png differ diff --git a/themes/screenshots/tin.png b/themes/screenshots/tin.png index 4c6fd4c..6baf039 100644 Binary files a/themes/screenshots/tin.png and b/themes/screenshots/tin.png differ diff --git a/themes/screenshots/tokyo-day.png b/themes/screenshots/tokyo-day.png index 7f8842e..0699584 100644 Binary files a/themes/screenshots/tokyo-day.png and b/themes/screenshots/tokyo-day.png differ diff --git a/themes/screenshots/tokyo-moon.png b/themes/screenshots/tokyo-moon.png new file mode 100644 index 0000000..a2c48a2 Binary files /dev/null and b/themes/screenshots/tokyo-moon.png differ diff --git a/themes/screenshots/tokyo-night.png b/themes/screenshots/tokyo-night.png index aca998f..6082d25 100644 Binary files a/themes/screenshots/tokyo-night.png and b/themes/screenshots/tokyo-night.png differ diff --git a/themes/screenshots/tokyo-storm.png b/themes/screenshots/tokyo-storm.png index c1a453b..a7cc6fe 100644 Binary files a/themes/screenshots/tokyo-storm.png and b/themes/screenshots/tokyo-storm.png differ diff --git a/themes/screenshots/tomorrow-night-blue.png b/themes/screenshots/tomorrow-night-blue.png index ee3f93f..212b366 100644 Binary files a/themes/screenshots/tomorrow-night-blue.png and b/themes/screenshots/tomorrow-night-blue.png differ diff --git a/themes/screenshots/tomorrow-night-bright.png b/themes/screenshots/tomorrow-night-bright.png index 9447823..cc98617 100644 Binary files a/themes/screenshots/tomorrow-night-bright.png and b/themes/screenshots/tomorrow-night-bright.png differ diff --git a/themes/screenshots/tomorrow-night-eighties.png b/themes/screenshots/tomorrow-night-eighties.png index eeff67e..3af0419 100644 Binary files a/themes/screenshots/tomorrow-night-eighties.png and b/themes/screenshots/tomorrow-night-eighties.png differ diff --git a/themes/screenshots/tomorrow-night.png b/themes/screenshots/tomorrow-night.png index 0cba6da..4863988 100644 Binary files a/themes/screenshots/tomorrow-night.png and b/themes/screenshots/tomorrow-night.png differ diff --git a/themes/screenshots/tomorrow.png b/themes/screenshots/tomorrow.png index aa4ab81..cb89b24 100644 Binary files a/themes/screenshots/tomorrow.png and b/themes/screenshots/tomorrow.png differ diff --git a/themes/screenshots/toy-chest.png b/themes/screenshots/toy-chest.png index 8c3fec8..a5d1b52 100644 Binary files a/themes/screenshots/toy-chest.png and b/themes/screenshots/toy-chest.png differ diff --git a/themes/screenshots/treehouse.png b/themes/screenshots/treehouse.png index e10df45..a99996d 100644 Binary files a/themes/screenshots/treehouse.png and b/themes/screenshots/treehouse.png differ diff --git a/themes/screenshots/tube.png b/themes/screenshots/tube.png index c778310..39af7e4 100644 Binary files a/themes/screenshots/tube.png and b/themes/screenshots/tube.png differ diff --git a/themes/screenshots/twilight.png b/themes/screenshots/twilight.png index f0aa425..efff437 100644 Binary files a/themes/screenshots/twilight.png and b/themes/screenshots/twilight.png differ diff --git a/themes/screenshots/two-firewatch.png b/themes/screenshots/two-firewatch.png index 400a401..c9e209f 100644 Binary files a/themes/screenshots/two-firewatch.png and b/themes/screenshots/two-firewatch.png differ diff --git a/themes/screenshots/unikitty-dark.png b/themes/screenshots/unikitty-dark.png index 2fddb62..1033e39 100644 Binary files a/themes/screenshots/unikitty-dark.png and b/themes/screenshots/unikitty-dark.png differ diff --git a/themes/screenshots/unikitty-light.png b/themes/screenshots/unikitty-light.png index 42c763f..5009cbc 100644 Binary files a/themes/screenshots/unikitty-light.png and b/themes/screenshots/unikitty-light.png differ diff --git a/themes/screenshots/ura.png b/themes/screenshots/ura.png index 939d557..0dd9ef6 100644 Binary files a/themes/screenshots/ura.png and b/themes/screenshots/ura.png differ diff --git a/themes/screenshots/urple.png b/themes/screenshots/urple.png index 7ab1984..06e2ae1 100644 Binary files a/themes/screenshots/urple.png and b/themes/screenshots/urple.png differ diff --git a/themes/screenshots/vag.png b/themes/screenshots/vag.png index fa3c8b5..8f88a24 100644 Binary files a/themes/screenshots/vag.png and b/themes/screenshots/vag.png differ diff --git a/themes/screenshots/vaughn.png b/themes/screenshots/vaughn.png index 43665b1..de84fa8 100644 Binary files a/themes/screenshots/vaughn.png and b/themes/screenshots/vaughn.png differ diff --git a/themes/screenshots/vibrant-ink.png b/themes/screenshots/vibrant-ink.png index 6c7edbf..fc021bf 100644 Binary files a/themes/screenshots/vibrant-ink.png and b/themes/screenshots/vibrant-ink.png differ diff --git a/themes/screenshots/vs-code-dark-plus.png b/themes/screenshots/vs-code-dark-plus.png index 3e96078..2415c2d 100644 Binary files a/themes/screenshots/vs-code-dark-plus.png and b/themes/screenshots/vs-code-dark-plus.png differ diff --git a/themes/screenshots/vulcan.png b/themes/screenshots/vulcan.png index ff07021..883153c 100644 Binary files a/themes/screenshots/vulcan.png and b/themes/screenshots/vulcan.png differ diff --git a/themes/screenshots/warm-neon.png b/themes/screenshots/warm-neon.png index 79c5538..007a461 100644 Binary files a/themes/screenshots/warm-neon.png and b/themes/screenshots/warm-neon.png differ diff --git a/themes/screenshots/wez.png b/themes/screenshots/wez.png index 0f64a5e..c7e0a5c 100644 Binary files a/themes/screenshots/wez.png and b/themes/screenshots/wez.png differ diff --git a/themes/screenshots/wild-cherry.png b/themes/screenshots/wild-cherry.png index 4ae2d69..95e8629 100644 Binary files a/themes/screenshots/wild-cherry.png and b/themes/screenshots/wild-cherry.png differ diff --git a/themes/screenshots/windows-10-light.png b/themes/screenshots/windows-10-light.png index adeca83..94afb27 100644 Binary files a/themes/screenshots/windows-10-light.png and b/themes/screenshots/windows-10-light.png differ diff --git a/themes/screenshots/windows-10.png b/themes/screenshots/windows-10.png index 1fb68e2..40c01cc 100644 Binary files a/themes/screenshots/windows-10.png and b/themes/screenshots/windows-10.png differ diff --git a/themes/screenshots/windows-95-light.png b/themes/screenshots/windows-95-light.png index e260f96..7f8dd34 100644 Binary files a/themes/screenshots/windows-95-light.png and b/themes/screenshots/windows-95-light.png differ diff --git a/themes/screenshots/windows-95.png b/themes/screenshots/windows-95.png index 26a016d..6afd65c 100644 Binary files a/themes/screenshots/windows-95.png and b/themes/screenshots/windows-95.png differ diff --git a/themes/screenshots/windows-highcontrast-light.png b/themes/screenshots/windows-highcontrast-light.png index 0648615..21fc7d3 100644 Binary files a/themes/screenshots/windows-highcontrast-light.png and b/themes/screenshots/windows-highcontrast-light.png differ diff --git a/themes/screenshots/windows-highcontrast.png b/themes/screenshots/windows-highcontrast.png index eec0ddf..3ee3176 100644 Binary files a/themes/screenshots/windows-highcontrast.png and b/themes/screenshots/windows-highcontrast.png differ diff --git a/themes/screenshots/windows-nt-light.png b/themes/screenshots/windows-nt-light.png index de0e80e..b318d64 100644 Binary files a/themes/screenshots/windows-nt-light.png and b/themes/screenshots/windows-nt-light.png differ diff --git a/themes/screenshots/windows-nt.png b/themes/screenshots/windows-nt.png index 3828441..9be947d 100644 Binary files a/themes/screenshots/windows-nt.png and b/themes/screenshots/windows-nt.png differ diff --git a/themes/screenshots/wombat.png b/themes/screenshots/wombat.png index f08232f..407b6fe 100644 Binary files a/themes/screenshots/wombat.png and b/themes/screenshots/wombat.png differ diff --git a/themes/screenshots/woodland.png b/themes/screenshots/woodland.png index fe41f30..8adc6ac 100644 Binary files a/themes/screenshots/woodland.png and b/themes/screenshots/woodland.png differ diff --git a/themes/screenshots/wryan.png b/themes/screenshots/wryan.png index be29cf6..2311d18 100644 Binary files a/themes/screenshots/wryan.png and b/themes/screenshots/wryan.png differ diff --git a/themes/screenshots/xcode-dusk.png b/themes/screenshots/xcode-dusk.png index 087a25a..2504395 100644 Binary files a/themes/screenshots/xcode-dusk.png and b/themes/screenshots/xcode-dusk.png differ diff --git a/themes/screenshots/yachiyo.png b/themes/screenshots/yachiyo.png index b55582e..c5250bf 100644 Binary files a/themes/screenshots/yachiyo.png and b/themes/screenshots/yachiyo.png differ diff --git a/themes/screenshots/zenburn.png b/themes/screenshots/zenburn.png index ef2b0fa..e9f42da 100644 Binary files a/themes/screenshots/zenburn.png and b/themes/screenshots/zenburn.png differ diff --git a/themes/src/custom-nu-themes/catppuccin-latte.nu b/themes/src/custom-nu-themes/catppuccin-latte.nu index 26c2f9c..c17e791 100644 --- a/themes/src/custom-nu-themes/catppuccin-latte.nu +++ b/themes/src/custom-nu-themes/catppuccin-latte.nu @@ -1,4 +1,4 @@ -export def main [] { return { +export def main [] { const color_palette = { rosewater: "#dc8a78" flamingo: "#dd7878" @@ -28,86 +28,87 @@ export def main [] { return { base: "#eff1f5" } - separator: $color_palette.overlay0 - leading_trailing_space_bg: { attr: "n" } - header: { fg: $color_palette.blue attr: "b" } - empty: $color_palette.lavender - bool: $color_palette.lavender - int: $color_palette.peach - duration: $color_palette.text - filesize: {|e| - if $e < 1mb { - $color_palette.green - } else if $e < 100mb { - $color_palette.yellow - } else if $e < 500mb { - $color_palette.peach - } else if $e < 800mb { - $color_palette.maroon - } else if $e > 800mb { - $color_palette.red + return { + separator: $color_palette.overlay0 + leading_trailing_space_bg: { attr: "n" } + header: { fg: $color_palette.blue attr: "b" } + empty: $color_palette.lavender + bool: $color_palette.lavender + int: $color_palette.peach + duration: $color_palette.text + filesize: {|e| + if $e < 1mb { + $color_palette.green + } else if $e < 100mb { + $color_palette.yellow + } else if $e < 500mb { + $color_palette.peach + } else if $e < 800mb { + $color_palette.maroon + } else if $e > 800mb { + $color_palette.red + } } - } - date: {|| (date now) - $in | - if $in < 1hr { - $color_palette.green - } else if $in < 1day { - $color_palette.yellow - } else if $in < 3day { - $color_palette.peach - } else if $in < 1wk { - $color_palette.maroon - } else if $in > 1wk { - $color_palette.red + date: {|| (date now) - $in | + if $in < 1hr { + $color_palette.green + } else if $in < 1day { + $color_palette.yellow + } else if $in < 3day { + $color_palette.peach + } else if $in < 1wk { + $color_palette.maroon + } else if $in > 1wk { + $color_palette.red + } } - } - range: $color_palette.text - float: $color_palette.text - string: $color_palette.text - nothing: $color_palette.text - binary: $color_palette.text - cellpath: $color_palette.text - row_index: { fg: $color_palette.mauve attr: "b" } - record: $color_palette.text - list: $color_palette.text - block: $color_palette.text - hints: $color_palette.overlay1 - search_result: { fg: $color_palette.red bg: $color_palette.text } + range: $color_palette.text + float: $color_palette.text + string: $color_palette.text + nothing: $color_palette.text + binary: $color_palette.text + 'cell-path': $color_palette.text + row_index: { fg: $color_palette.mauve attr: "b" } + record: $color_palette.text + list: $color_palette.text + block: $color_palette.text + hints: $color_palette.overlay1 + search_result: { fg: $color_palette.red bg: $color_palette.text } - shape_and: { fg: $color_palette.pink attr: "b" } - shape_binary: { fg: $color_palette.pink attr: "b" } - shape_block: { fg: $color_palette.blue attr: "b" } - shape_bool: $color_palette.teal - shape_custom: $color_palette.green - shape_datetime: { fg: $color_palette.teal attr: "b" } - shape_directory: $color_palette.teal - shape_external: $color_palette.teal - shape_externalarg: { fg: $color_palette.green attr: "b" } - shape_filepath: $color_palette.teal - shape_flag: { fg: $color_palette.blue attr: "b" } - shape_float: { fg: $color_palette.pink attr: "b" } - shape_garbage: { fg: $color_palette.text bg: $color_palette.red attr: "b" } - shape_globpattern: { fg: $color_palette.teal attr: "b" } - shape_int: { fg: $color_palette.pink attr: "b" } - shape_internalcall: { fg: $color_palette.teal attr: "b" } - shape_list: { fg: $color_palette.teal attr: "b" } - shape_literal: $color_palette.blue - shape_match_pattern: $color_palette.green - shape_matching_brackets: { attr: "u" } - shape_nothing: $color_palette.teal - shape_operator: $color_palette.peach - shape_or: { fg: $color_palette.pink attr: "b" } - shape_pipe: { fg: $color_palette.pink attr: "b" } - shape_range: { fg: $color_palette.peach attr: "b" } - shape_record: { fg: $color_palette.teal attr: "b" } - shape_redirection: { fg: $color_palette.pink attr: "b" } - shape_signature: { fg: $color_palette.green attr: "b" } - shape_string: $color_palette.green - shape_string_interpolation: { fg: $color_palette.teal attr: "b" } - shape_table: { fg: $color_palette.blue attr: "b" } - shape_variable: $color_palette.pink + shape_and: { fg: $color_palette.pink attr: "b" } + shape_binary: { fg: $color_palette.pink attr: "b" } + shape_block: { fg: $color_palette.blue attr: "b" } + shape_bool: $color_palette.teal + shape_custom: $color_palette.green + shape_datetime: { fg: $color_palette.teal attr: "b" } + shape_directory: $color_palette.teal + shape_external: $color_palette.teal + shape_externalarg: { fg: $color_palette.green attr: "b" } + shape_filepath: $color_palette.teal + shape_flag: { fg: $color_palette.blue attr: "b" } + shape_float: { fg: $color_palette.pink attr: "b" } + shape_garbage: { fg: $color_palette.text bg: $color_palette.red attr: "b" } + shape_globpattern: { fg: $color_palette.teal attr: "b" } + shape_int: { fg: $color_palette.pink attr: "b" } + shape_internalcall: { fg: $color_palette.teal attr: "b" } + shape_list: { fg: $color_palette.teal attr: "b" } + shape_literal: $color_palette.blue + shape_match_pattern: $color_palette.green + shape_matching_brackets: { attr: "u" } + shape_nothing: $color_palette.teal + shape_operator: $color_palette.peach + shape_or: { fg: $color_palette.pink attr: "b" } + shape_pipe: { fg: $color_palette.pink attr: "b" } + shape_range: { fg: $color_palette.peach attr: "b" } + shape_record: { fg: $color_palette.teal attr: "b" } + shape_redirection: { fg: $color_palette.pink attr: "b" } + shape_signature: { fg: $color_palette.green attr: "b" } + shape_string: $color_palette.green + shape_string_interpolation: { fg: $color_palette.teal attr: "b" } + shape_table: { fg: $color_palette.blue attr: "b" } + shape_variable: $color_palette.pink - background: $color_palette.base - foreground: $color_palette.text - cursor: $color_palette.blue + background: $color_palette.base + foreground: $color_palette.text + cursor: $color_palette.blue }} \ No newline at end of file diff --git a/themes/src/custom-nu-themes/catppuccin-mocha.nu b/themes/src/custom-nu-themes/catppuccin-mocha.nu index 15cd2b5..37e4f36 100644 --- a/themes/src/custom-nu-themes/catppuccin-mocha.nu +++ b/themes/src/custom-nu-themes/catppuccin-mocha.nu @@ -1,4 +1,4 @@ -export def main [] { return { +export def main [] { const color_palette = { rosewater: "#f5e0dc" flamingo: "#f2cdcd" @@ -28,86 +28,88 @@ export def main [] { return { crust: "#11111b" } - separator: $color_palette.overlay0 - leading_trailing_space_bg: { attr: "n" } - header: { fg: $color_palette.blue attr: "b" } - empty: $color_palette.lavender - bool: $color_palette.lavender - int: $color_palette.peach - duration: $color_palette.text - filesize: {|e| - if $e < 1mb { - $color_palette.green - } else if $e < 100mb { - $color_palette.yellow - } else if $e < 500mb { - $color_palette.peach - } else if $e < 800mb { - $color_palette.maroon - } else if $e > 800mb { - $color_palette.red + return { + separator: $color_palette.overlay0 + leading_trailing_space_bg: { attr: "n" } + header: { fg: $color_palette.blue attr: "b" } + empty: $color_palette.lavender + bool: $color_palette.lavender + int: $color_palette.peach + duration: $color_palette.text + filesize: {|e| + if $e < 1mb { + $color_palette.green + } else if $e < 100mb { + $color_palette.yellow + } else if $e < 500mb { + $color_palette.peach + } else if $e < 800mb { + $color_palette.maroon + } else if $e > 800mb { + $color_palette.red + } } - } - date: {|| (date now) - $in | - if $in < 1hr { - $color_palette.green - } else if $in < 1day { - $color_palette.yellow - } else if $in < 3day { - $color_palette.peach - } else if $in < 1wk { - $color_palette.maroon - } else if $in > 1wk { - $color_palette.red + date: {|| (date now) - $in | + if $in < 1hr { + $color_palette.green + } else if $in < 1day { + $color_palette.yellow + } else if $in < 3day { + $color_palette.peach + } else if $in < 1wk { + $color_palette.maroon + } else if $in > 1wk { + $color_palette.red + } } + range: $color_palette.text + float: $color_palette.text + string: $color_palette.text + nothing: $color_palette.text + binary: $color_palette.text + 'cell-path': $color_palette.text + row_index: { fg: $color_palette.mauve attr: "b" } + record: $color_palette.text + list: $color_palette.text + block: $color_palette.text + hints: $color_palette.overlay1 + search_result: { fg: $color_palette.red bg: $color_palette.text } + + shape_and: { fg: $color_palette.pink attr: "b" } + shape_binary: { fg: $color_palette.pink attr: "b" } + shape_block: { fg: $color_palette.blue attr: "b" } + shape_bool: $color_palette.teal + shape_custom: $color_palette.green + shape_datetime: { fg: $color_palette.teal attr: "b" } + shape_directory: $color_palette.teal + shape_external: $color_palette.teal + shape_externalarg: { fg: $color_palette.green attr: "b" } + shape_filepath: $color_palette.teal + shape_flag: { fg: $color_palette.blue attr: "b" } + shape_float: { fg: $color_palette.pink attr: "b" } + shape_garbage: { fg: $color_palette.text bg: $color_palette.red attr: "b" } + shape_globpattern: { fg: $color_palette.teal attr: "b" } + shape_int: { fg: $color_palette.pink attr: "b" } + shape_internalcall: { fg: $color_palette.teal attr: "b" } + shape_list: { fg: $color_palette.teal attr: "b" } + shape_literal: $color_palette.blue + shape_match_pattern: $color_palette.green + shape_matching_brackets: { attr: "u" } + shape_nothing: $color_palette.teal + shape_operator: $color_palette.peach + shape_or: { fg: $color_palette.pink attr: "b" } + shape_pipe: { fg: $color_palette.pink attr: "b" } + shape_range: { fg: $color_palette.peach attr: "b" } + shape_record: { fg: $color_palette.teal attr: "b" } + shape_redirection: { fg: $color_palette.pink attr: "b" } + shape_signature: { fg: $color_palette.green attr: "b" } + shape_string: $color_palette.green + shape_string_interpolation: { fg: $color_palette.teal attr: "b" } + shape_table: { fg: $color_palette.blue attr: "b" } + shape_variable: $color_palette.pink + + background: $color_palette.base + foreground: $color_palette.text + cursor: $color_palette.blue } - range: $color_palette.text - float: $color_palette.text - string: $color_palette.text - nothing: $color_palette.text - binary: $color_palette.text - cellpath: $color_palette.text - row_index: { fg: $color_palette.mauve attr: "b" } - record: $color_palette.text - list: $color_palette.text - block: $color_palette.text - hints: $color_palette.overlay1 - search_result: { fg: $color_palette.red bg: $color_palette.text } - - shape_and: { fg: $color_palette.pink attr: "b" } - shape_binary: { fg: $color_palette.pink attr: "b" } - shape_block: { fg: $color_palette.blue attr: "b" } - shape_bool: $color_palette.teal - shape_custom: $color_palette.green - shape_datetime: { fg: $color_palette.teal attr: "b" } - shape_directory: $color_palette.teal - shape_external: $color_palette.teal - shape_externalarg: { fg: $color_palette.green attr: "b" } - shape_filepath: $color_palette.teal - shape_flag: { fg: $color_palette.blue attr: "b" } - shape_float: { fg: $color_palette.pink attr: "b" } - shape_garbage: { fg: $color_palette.text bg: $color_palette.red attr: "b" } - shape_globpattern: { fg: $color_palette.teal attr: "b" } - shape_int: { fg: $color_palette.pink attr: "b" } - shape_internalcall: { fg: $color_palette.teal attr: "b" } - shape_list: { fg: $color_palette.teal attr: "b" } - shape_literal: $color_palette.blue - shape_match_pattern: $color_palette.green - shape_matching_brackets: { attr: "u" } - shape_nothing: $color_palette.teal - shape_operator: $color_palette.peach - shape_or: { fg: $color_palette.pink attr: "b" } - shape_pipe: { fg: $color_palette.pink attr: "b" } - shape_range: { fg: $color_palette.peach attr: "b" } - shape_record: { fg: $color_palette.teal attr: "b" } - shape_redirection: { fg: $color_palette.pink attr: "b" } - shape_signature: { fg: $color_palette.green attr: "b" } - shape_string: $color_palette.green - shape_string_interpolation: { fg: $color_palette.teal attr: "b" } - shape_table: { fg: $color_palette.blue attr: "b" } - shape_variable: $color_palette.pink - - background: $color_palette.base - foreground: $color_palette.text - cursor: $color_palette.blue -}} \ No newline at end of file +} \ No newline at end of file diff --git a/themes/src/custom-nu-themes/nushell-dark.nu b/themes/src/custom-nu-themes/nushell-dark.nu index 94a2ab2..f3203f7 100644 --- a/themes/src/custom-nu-themes/nushell-dark.nu +++ b/themes/src/custom-nu-themes/nushell-dark.nu @@ -1,4 +1,5 @@ -export def main [] { return { +export def main [] { + return { # color for nushell primitives separator: white leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off @@ -38,7 +39,7 @@ export def main [] { return { string: white nothing: white binary: white - cellpath: white + 'cell-path': white row_index: green_bold record: white list: white @@ -82,7 +83,8 @@ export def main [] { return { shape_variable: purple shape_vardecl: purple - background: dark_gray - foreground: default - cursor: red -}} \ No newline at end of file + background: "#767676" + foreground: "#f2f2f2" + cursor: "#c50f1f" + } +} \ No newline at end of file diff --git a/themes/src/custom-nu-themes/nushell-light.nu b/themes/src/custom-nu-themes/nushell-light.nu index 2332819..c6427f2 100644 --- a/themes/src/custom-nu-themes/nushell-light.nu +++ b/themes/src/custom-nu-themes/nushell-light.nu @@ -1,4 +1,5 @@ -export def main [] { return { +export def main [] { + return { # color for nushell primitives separator: dark_gray leading_trailing_space_bg: { attr: n } # no fg, no bg, attr none effectively turns this off @@ -38,7 +39,7 @@ export def main [] { return { string: dark_gray nothing: dark_gray binary: dark_gray - cellpath: dark_gray + 'cell-path': dark_gray row_index: green_bold record: white list: white @@ -82,7 +83,8 @@ export def main [] { return { shape_variable: purple shape_vardecl: purple - background: light_gray - foreground: default - cursor: red -}} \ No newline at end of file + background: "#f2f2f2" + foreground: "#767676" + cursor: "#c50f1f" + } +} \ No newline at end of file diff --git a/themes/src/custom-nu-themes/tokyo-moon.nu b/themes/src/custom-nu-themes/tokyo-moon.nu index e70cea6..6374f5f 100644 --- a/themes/src/custom-nu-themes/tokyo-moon.nu +++ b/themes/src/custom-nu-themes/tokyo-moon.nu @@ -1,82 +1,84 @@ -export def main [] { return { - separator: "#a9b1d6" - leading_trailing_space_bg: { attr: "n" } - header: { fg: "#9ece6a" attr: "b" } - empty: "#7aa2f7" - bool: {|| if $in { "#7dcfff" } else { "light_gray" } } - int: "#a9b1d6" - filesize: {|e| - if $e == 0b { - "#a9b1d6" - } else if $e < 1mb { - "#7dcfff" - } else {{ fg: "#7aa2f7" }} - } - duration: "#a9b1d6" - date: {|| (date now) - $in | - if $in < 1hr { - { fg: "#f7768e" attr: "b" } - } else if $in < 6hr { - "#f7768e" - } else if $in < 1day { - "#e0af68" - } else if $in < 3day { - "#9ece6a" - } else if $in < 1wk { - { fg: "#9ece6a" attr: "b" } - } else if $in < 6wk { - "#7dcfff" - } else if $in < 52wk { - "#7aa2f7" - } else { "dark_gray" } - } - range: "#a9b1d6" - float: "#a9b1d6" - string: "#a9b1d6" - nothing: "#a9b1d6" - binary: "#a9b1d6" - cellpath: "#a9b1d6" - row_index: { fg: "#9ece6a" attr: "b" } - record: "#a9b1d6" - list: "#a9b1d6" - block: "#a9b1d6" - hints: "dark_gray" - search_result: { fg: "#f7768e" bg: "#a9b1d6" } +export def main [] { + return { + separator: "#a9b1d6" + leading_trailing_space_bg: { attr: "n" } + header: { fg: "#9ece6a" attr: "b" } + empty: "#7aa2f7" + bool: {|| if $in { "#7dcfff" } else { "light_gray" } } + int: "#a9b1d6" + filesize: {|e| + if $e == 0b { + "#a9b1d6" + } else if $e < 1mb { + "#7dcfff" + } else {{ fg: "#7aa2f7" }} + } + duration: "#a9b1d6" + date: {|| (date now) - $in | + if $in < 1hr { + { fg: "#f7768e" attr: "b" } + } else if $in < 6hr { + "#f7768e" + } else if $in < 1day { + "#e0af68" + } else if $in < 3day { + "#9ece6a" + } else if $in < 1wk { + { fg: "#9ece6a" attr: "b" } + } else if $in < 6wk { + "#7dcfff" + } else if $in < 52wk { + "#7aa2f7" + } else { "dark_gray" } + } + range: "#a9b1d6" + float: "#a9b1d6" + string: "#a9b1d6" + nothing: "#a9b1d6" + binary: "#a9b1d6" + cell-path: "#a9b1d6" + row_index: { fg: "#9ece6a" attr: "b" } + record: "#a9b1d6" + list: "#a9b1d6" + block: "#a9b1d6" + hints: "dark_gray" + search_result: { fg: "#f7768e" bg: "#a9b1d6" } - shape_and: { fg: "#bb9af7" attr: "b" } - shape_binary: { fg: "#bb9af7" attr: "b" } - shape_block: { fg: "#7aa2f7" attr: "b" } - shape_bool: "#7dcfff" - shape_custom: "#9ece6a" - shape_datetime: { fg: "#7dcfff" attr: "b" } - shape_directory: "#7dcfff" - shape_external: "#7dcfff" - shape_externalarg: { fg: "#9ece6a" attr: "b" } - shape_filepath: "#7dcfff" - shape_flag: { fg: "#7aa2f7" attr: "b" } - shape_float: { fg: "#bb9af7" attr: "b" } - shape_garbage: { fg: "#FFFFFF" bg: "#FF0000" attr: "b" } - shape_globpattern: { fg: "#7dcfff" attr: "b" } - shape_int: { fg: "#bb9af7" attr: "b" } - shape_internalcall: { fg: "#7dcfff" attr: "b" } - shape_list: { fg: "#7dcfff" attr: "b" } - shape_literal: "#7aa2f7" - shape_match_pattern: "#9ece6a" - shape_matching_brackets: { attr: "u" } - shape_nothing: "#7dcfff" - shape_operator: "#e0af68" - shape_or: { fg: "#bb9af7" attr: "b" } - shape_pipe: { fg: "#bb9af7" attr: "b" } - shape_range: { fg: "#e0af68" attr: "b" } - shape_record: { fg: "#7dcfff" attr: "b" } - shape_redirection: { fg: "#bb9af7" attr: "b" } - shape_signature: { fg: "#9ece6a" attr: "b" } - shape_string: "#9ece6a" - shape_string_interpolation: { fg: "#7dcfff" attr: "b" } - shape_table: { fg: "#7aa2f7" attr: "b" } - shape_variable: "#bb9af7" + shape_and: { fg: "#bb9af7" attr: "b" } + shape_binary: { fg: "#bb9af7" attr: "b" } + shape_block: { fg: "#7aa2f7" attr: "b" } + shape_bool: "#7dcfff" + shape_custom: "#9ece6a" + shape_datetime: { fg: "#7dcfff" attr: "b" } + shape_directory: "#7dcfff" + shape_external: "#7dcfff" + shape_externalarg: { fg: "#9ece6a" attr: "b" } + shape_filepath: "#7dcfff" + shape_flag: { fg: "#7aa2f7" attr: "b" } + shape_float: { fg: "#bb9af7" attr: "b" } + shape_garbage: { fg: "#FFFFFF" bg: "#FF0000" attr: "b" } + shape_globpattern: { fg: "#7dcfff" attr: "b" } + shape_int: { fg: "#bb9af7" attr: "b" } + shape_internalcall: { fg: "#7dcfff" attr: "b" } + shape_list: { fg: "#7dcfff" attr: "b" } + shape_literal: "#7aa2f7" + shape_match_pattern: "#9ece6a" + shape_matching_brackets: { attr: "u" } + shape_nothing: "#7dcfff" + shape_operator: "#e0af68" + shape_or: { fg: "#bb9af7" attr: "b" } + shape_pipe: { fg: "#bb9af7" attr: "b" } + shape_range: { fg: "#e0af68" attr: "b" } + shape_record: { fg: "#7dcfff" attr: "b" } + shape_redirection: { fg: "#bb9af7" attr: "b" } + shape_signature: { fg: "#9ece6a" attr: "b" } + shape_string: "#9ece6a" + shape_string_interpolation: { fg: "#7dcfff" attr: "b" } + shape_table: { fg: "#7aa2f7" attr: "b" } + shape_variable: "#bb9af7" - background: "#1a1b26" - foreground: "#c0caf5" - cursor: "#c0caf5" -}} \ No newline at end of file + background: "#1a1b26" + foreground: "#c0caf5" + cursor: "#c0caf5" + } +} \ No newline at end of file diff --git a/themes/src/preview-generate-screenshots.nu b/themes/src/preview-generate-screenshots.nu new file mode 100644 index 0000000..c9fbecc --- /dev/null +++ b/themes/src/preview-generate-screenshots.nu @@ -0,0 +1,141 @@ +# This script is meant to be run from the nu_scripts/themes/src +# folder inside this repository. +# +# Recommended: +# * Close any other Terminal tabs +# * Set your tab title to something like "Theme Preview" +# * Size your terminal so that theme previews just fit without +# too great a border +# * Place your terminal window against a separate solid +# background to reduce artifacts + +def save_screenshot [ method, filename ] { + use .../stdlib-candidate/std-rfc/str + match $method { + # This method for generating terminal screenshots uses + # a pure-PowerShell script. The caveat is that Windows + # Security may interpret this as a threat and refuse to + # execute. In that case, temporarily turn off Real-Time + # Protection, run the script, and then immediately + # re-enable protection. + + # This method should work from either WSL or Nushell + # for Windows + "powershell" => { + let ps_script = $" + $Host.UI.RawUI.WindowTitle = 'Theme Preview' + Add-Type -AssemblyName System.Windows.Forms + [Windows.Forms.Sendkeys]::SendWait\('%{Prtsc}') + [Windows.Forms.Sendkeys]::SendWait\('%{Prtsc}') + [Windows.Forms.Sendkeys]::SendWait\('%{Prtsc}') + sleep 1 + [Windows.Forms.Clipboard]::GetImage\().Save\('($filename)', [System.Drawing.Imaging.ImageFormat]::Png) + " + | str dedent + + $"powershell.exe -c \" + ($ps_script) + \"" + } + + # Requires MiniCap, a utility for capturing screenshots on Windows + "minicap" => { + $'c:\\apps\\MiniCap\\MiniCap.exe -captureactivewin -bordershadow -save ($filename) -closeapp -exit' + } + } + +} + +def "preview generate screenshots" [theme_count = 10_000] { + use .../stdlib-candidate/std-rfc str + + let themes = ( + "../nu-themes/" + | path expand + | path join "*.nu" + | into glob + | ls $in + ) + + for theme in $themes { + let name = $theme.name + let basename = ($theme.name | path parse | get stem) + + let filename = ( + "../screenshots" + | path join $'($name | path parse | get stem).png' + ) + + let script = $" + use .. * + source ($name) + clear + sleep 100ms + print `Theme name: '($basename)'` + print -n \(preview theme small | table -e) + sleep 250ms + (save_screenshot "powershell" $filename) + " + + # Run with default config + nu -n -c $script + } + +} + +def "preview generate readme" [] { + use .../stdlib-candidate/std-rfc str + + # README Title + "# Screenshots of Theme Previews\n\n" + | save -f "../screenshots/README.md" + + # Screenshot for each Theme + "../screenshots/*.png" + | into glob + | ls $in + | get name + | sort + | each {|screenshot| + let theme_name = ( + $screenshot + | path parse + | get stem + ) + let screenshot_file = ( + $screenshot + | path parse + | $"($in.stem).($in.extension)" + ) + + $" + ### Theme name: '($theme_name)' + ![($theme_name)]\(($screenshot_file)) + + + " + | str dedent + | save -a "../screenshots/README.md" + } + | ignore +} + +def main [] { + use .../stdlib-candidate/std-rfc/str + + if $env.PWD != $env.FILE_PWD { + " + Please run this script from the directory where it resides using: + + nu preview-screenshot-script.nu + " + | str dedent + | print -e $in + + return + } else { + mkdir ../screenshots + preview generate screenshots + preview generate readme + } +} \ No newline at end of file diff --git a/themes/src/preview-generate-script.nu b/themes/src/preview-generate-script.nu deleted file mode 100644 index b128897..0000000 --- a/themes/src/preview-generate-script.nu +++ /dev/null @@ -1,32 +0,0 @@ -# This script is meant to be run from the nu_scripts/themes/themes folder -# and requires MiniCap to be installed in c:\apps\MiniCap\MiniCap.exe -# which is a small windows utility that captures screenshots. This script -# generates another script named preview-screenshot-script.nu which, when -# ran, will generate a screenshot of each theme and put it in the folder -# specified. - -# -def preview_generate_script [theme_count = 10_000] { - let themes = (ls *.nu | first $theme_count) - $themes | each {|theme| - let name = $theme.name - if $name in ["preview-terminal.nu", "preview-screenshot-script.nu", "preview-generate-script.nu", "preview-theme.nu"] { - continue - } - let basename = ($theme.name | path parse | get stem) - [ - "clear" - $"use ($name)" - $"$env.config.color_config = (char lp)($basename)(char rp)" - $'print $"\e]10;(char lp)(char lp)($basename)(char rp).foreground(char rp);(char lp)(char lp)($basename)(char rp).background(char rp);(char lp)(char lp)($basename)(char rp).cursor(char rp)(char lp)char bel(char rp)"' - "source preview-theme.nu" - "sleep 100ms" - $"print `Theme name: (char sq)($basename)(char sq)`" - "print (preview_theme_small | table -e)" - "sleep 250ms" - $'c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\($name | path parse | get stem)_$dt:%Y%m%d$.png -closeapp -exit(char nl)' - ] | str join "\n" | save -f -a preview-screenshot-script.nu - } -} - -preview_generate_script \ No newline at end of file diff --git a/themes/src/preview-screenshot-script.nu b/themes/src/preview-screenshot-script.nu deleted file mode 100644 index eb5808b..0000000 --- a/themes/src/preview-screenshot-script.nu +++ /dev/null @@ -1,4480 +0,0 @@ -clear -use 3024-day.nu -$env.config.color_config = (3024-day) -print $"\e]10;((3024-day).foreground);((3024-day).background);((3024-day).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: '3024-day'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\3024-day_$dt:%Y%m%d$.png -closeapp -exit -clear -use 3024-night.nu -$env.config.color_config = (3024-night) -print $"\e]10;((3024-night).foreground);((3024-night).background);((3024-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: '3024-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\3024-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use 3024r.nu -$env.config.color_config = (3024r) -print $"\e]10;((3024r).foreground);((3024r).background);((3024r).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: '3024r'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\3024r_$dt:%Y%m%d$.png -closeapp -exit -clear -use abyss.nu -$env.config.color_config = (abyss) -print $"\e]10;((abyss).foreground);((abyss).background);((abyss).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'abyss'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\abyss_$dt:%Y%m%d$.png -closeapp -exit -clear -use aci.nu -$env.config.color_config = (aci) -print $"\e]10;((aci).foreground);((aci).background);((aci).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'aci'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\aci_$dt:%Y%m%d$.png -closeapp -exit -clear -use aco.nu -$env.config.color_config = (aco) -print $"\e]10;((aco).foreground);((aco).background);((aco).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'aco'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\aco_$dt:%Y%m%d$.png -closeapp -exit -clear -use adventuretime.nu -$env.config.color_config = (adventuretime) -print $"\e]10;((adventuretime).foreground);((adventuretime).background);((adventuretime).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'adventuretime'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\adventuretime_$dt:%Y%m%d$.png -closeapp -exit -clear -use afterglow.nu -$env.config.color_config = (afterglow) -print $"\e]10;((afterglow).foreground);((afterglow).background);((afterglow).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'afterglow'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\afterglow_$dt:%Y%m%d$.png -closeapp -exit -clear -use alien-blood.nu -$env.config.color_config = (alien-blood) -print $"\e]10;((alien-blood).foreground);((alien-blood).background);((alien-blood).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'alien-blood'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\alien-blood_$dt:%Y%m%d$.png -closeapp -exit -clear -use alucard.nu -$env.config.color_config = (alucard) -print $"\e]10;((alucard).foreground);((alucard).background);((alucard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'alucard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\alucard_$dt:%Y%m%d$.png -closeapp -exit -clear -use amora.nu -$env.config.color_config = (amora) -print $"\e]10;((amora).foreground);((amora).background);((amora).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'amora'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\amora_$dt:%Y%m%d$.png -closeapp -exit -clear -use apathy.nu -$env.config.color_config = (apathy) -print $"\e]10;((apathy).foreground);((apathy).background);((apathy).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'apathy'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\apathy_$dt:%Y%m%d$.png -closeapp -exit -clear -use apprentice.nu -$env.config.color_config = (apprentice) -print $"\e]10;((apprentice).foreground);((apprentice).background);((apprentice).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'apprentice'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\apprentice_$dt:%Y%m%d$.png -closeapp -exit -clear -use argonaut.nu -$env.config.color_config = (argonaut) -print $"\e]10;((argonaut).foreground);((argonaut).background);((argonaut).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'argonaut'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\argonaut_$dt:%Y%m%d$.png -closeapp -exit -clear -use arthur.nu -$env.config.color_config = (arthur) -print $"\e]10;((arthur).foreground);((arthur).background);((arthur).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'arthur'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\arthur_$dt:%Y%m%d$.png -closeapp -exit -clear -use ashes.nu -$env.config.color_config = (ashes) -print $"\e]10;((ashes).foreground);((ashes).background);((ashes).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ashes'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ashes_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-cave-light.nu -$env.config.color_config = (atelier-cave-light) -print $"\e]10;((atelier-cave-light).foreground);((atelier-cave-light).background);((atelier-cave-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-cave-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-cave-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-cave.nu -$env.config.color_config = (atelier-cave) -print $"\e]10;((atelier-cave).foreground);((atelier-cave).background);((atelier-cave).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-cave'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-cave_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-dune-light.nu -$env.config.color_config = (atelier-dune-light) -print $"\e]10;((atelier-dune-light).foreground);((atelier-dune-light).background);((atelier-dune-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-dune-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-dune-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-dune.nu -$env.config.color_config = (atelier-dune) -print $"\e]10;((atelier-dune).foreground);((atelier-dune).background);((atelier-dune).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-dune'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-dune_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-estuary-light.nu -$env.config.color_config = (atelier-estuary-light) -print $"\e]10;((atelier-estuary-light).foreground);((atelier-estuary-light).background);((atelier-estuary-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-estuary-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-estuary-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-estuary.nu -$env.config.color_config = (atelier-estuary) -print $"\e]10;((atelier-estuary).foreground);((atelier-estuary).background);((atelier-estuary).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-estuary'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-estuary_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-forest-light.nu -$env.config.color_config = (atelier-forest-light) -print $"\e]10;((atelier-forest-light).foreground);((atelier-forest-light).background);((atelier-forest-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-forest-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-forest-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-forest.nu -$env.config.color_config = (atelier-forest) -print $"\e]10;((atelier-forest).foreground);((atelier-forest).background);((atelier-forest).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-forest'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-forest_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-heath-light.nu -$env.config.color_config = (atelier-heath-light) -print $"\e]10;((atelier-heath-light).foreground);((atelier-heath-light).background);((atelier-heath-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-heath-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-heath-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-heath.nu -$env.config.color_config = (atelier-heath) -print $"\e]10;((atelier-heath).foreground);((atelier-heath).background);((atelier-heath).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-heath'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-heath_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-lakeside-light.nu -$env.config.color_config = (atelier-lakeside-light) -print $"\e]10;((atelier-lakeside-light).foreground);((atelier-lakeside-light).background);((atelier-lakeside-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-lakeside-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-lakeside-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-lakeside.nu -$env.config.color_config = (atelier-lakeside) -print $"\e]10;((atelier-lakeside).foreground);((atelier-lakeside).background);((atelier-lakeside).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-lakeside'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-lakeside_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-plateau-light.nu -$env.config.color_config = (atelier-plateau-light) -print $"\e]10;((atelier-plateau-light).foreground);((atelier-plateau-light).background);((atelier-plateau-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-plateau-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-plateau-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-plateau.nu -$env.config.color_config = (atelier-plateau) -print $"\e]10;((atelier-plateau).foreground);((atelier-plateau).background);((atelier-plateau).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-plateau'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-plateau_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-savanna-light.nu -$env.config.color_config = (atelier-savanna-light) -print $"\e]10;((atelier-savanna-light).foreground);((atelier-savanna-light).background);((atelier-savanna-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-savanna-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-savanna-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-savanna.nu -$env.config.color_config = (atelier-savanna) -print $"\e]10;((atelier-savanna).foreground);((atelier-savanna).background);((atelier-savanna).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-savanna'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-savanna_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-seaside-light.nu -$env.config.color_config = (atelier-seaside-light) -print $"\e]10;((atelier-seaside-light).foreground);((atelier-seaside-light).background);((atelier-seaside-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-seaside-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-seaside-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-seaside.nu -$env.config.color_config = (atelier-seaside) -print $"\e]10;((atelier-seaside).foreground);((atelier-seaside).background);((atelier-seaside).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-seaside'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-seaside_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-sulphurpool-light.nu -$env.config.color_config = (atelier-sulphurpool-light) -print $"\e]10;((atelier-sulphurpool-light).foreground);((atelier-sulphurpool-light).background);((atelier-sulphurpool-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-sulphurpool-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-sulphurpool-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atelier-sulphurpool.nu -$env.config.color_config = (atelier-sulphurpool) -print $"\e]10;((atelier-sulphurpool).foreground);((atelier-sulphurpool).background);((atelier-sulphurpool).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atelier-sulphurpool'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atelier-sulphurpool_$dt:%Y%m%d$.png -closeapp -exit -clear -use atlas.nu -$env.config.color_config = (atlas) -print $"\e]10;((atlas).foreground);((atlas).background);((atlas).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atlas'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atlas_$dt:%Y%m%d$.png -closeapp -exit -clear -use atom-one-light.nu -$env.config.color_config = (atom-one-light) -print $"\e]10;((atom-one-light).foreground);((atom-one-light).background);((atom-one-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atom-one-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atom-one-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use atom.nu -$env.config.color_config = (atom) -print $"\e]10;((atom).foreground);((atom).background);((atom).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'atom'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\atom_$dt:%Y%m%d$.png -closeapp -exit -clear -use ayu-light.nu -$env.config.color_config = (ayu-light) -print $"\e]10;((ayu-light).foreground);((ayu-light).background);((ayu-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ayu-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ayu-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use ayu-mirage-simple-cursor.nu -$env.config.color_config = (ayu-mirage-simple-cursor) -print $"\e]10;((ayu-mirage-simple-cursor).foreground);((ayu-mirage-simple-cursor).background);((ayu-mirage-simple-cursor).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ayu-mirage-simple-cursor'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ayu-mirage-simple-cursor_$dt:%Y%m%d$.png -closeapp -exit -clear -use ayu-mirage.nu -$env.config.color_config = (ayu-mirage) -print $"\e]10;((ayu-mirage).foreground);((ayu-mirage).background);((ayu-mirage).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ayu-mirage'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ayu-mirage_$dt:%Y%m%d$.png -closeapp -exit -clear -use ayu.nu -$env.config.color_config = (ayu) -print $"\e]10;((ayu).foreground);((ayu).background);((ayu).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ayu'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ayu_$dt:%Y%m%d$.png -closeapp -exit -clear -use azu.nu -$env.config.color_config = (azu) -print $"\e]10;((azu).foreground);((azu).background);((azu).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'azu'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\azu_$dt:%Y%m%d$.png -closeapp -exit -clear -use batman.nu -$env.config.color_config = (batman) -print $"\e]10;((batman).foreground);((batman).background);((batman).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'batman'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\batman_$dt:%Y%m%d$.png -closeapp -exit -clear -use belafonte-day.nu -$env.config.color_config = (belafonte-day) -print $"\e]10;((belafonte-day).foreground);((belafonte-day).background);((belafonte-day).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'belafonte-day'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\belafonte-day_$dt:%Y%m%d$.png -closeapp -exit -clear -use belafonte-night.nu -$env.config.color_config = (belafonte-night) -print $"\e]10;((belafonte-night).foreground);((belafonte-night).background);((belafonte-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'belafonte-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\belafonte-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use bespin.nu -$env.config.color_config = (bespin) -print $"\e]10;((bespin).foreground);((bespin).background);((bespin).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'bespin'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\bespin_$dt:%Y%m%d$.png -closeapp -exit -clear -use bim.nu -$env.config.color_config = (bim) -print $"\e]10;((bim).foreground);((bim).background);((bim).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'bim'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\bim_$dt:%Y%m%d$.png -closeapp -exit -clear -use birds-of-paradise.nu -$env.config.color_config = (birds-of-paradise) -print $"\e]10;((birds-of-paradise).foreground);((birds-of-paradise).background);((birds-of-paradise).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'birds-of-paradise'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\birds-of-paradise_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-bathory.nu -$env.config.color_config = (black-metal-bathory) -print $"\e]10;((black-metal-bathory).foreground);((black-metal-bathory).background);((black-metal-bathory).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-bathory'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-bathory_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-burzum.nu -$env.config.color_config = (black-metal-burzum) -print $"\e]10;((black-metal-burzum).foreground);((black-metal-burzum).background);((black-metal-burzum).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-burzum'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-burzum_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-dark-funeral.nu -$env.config.color_config = (black-metal-dark-funeral) -print $"\e]10;((black-metal-dark-funeral).foreground);((black-metal-dark-funeral).background);((black-metal-dark-funeral).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-dark-funeral'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-dark-funeral_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-gorgoroth.nu -$env.config.color_config = (black-metal-gorgoroth) -print $"\e]10;((black-metal-gorgoroth).foreground);((black-metal-gorgoroth).background);((black-metal-gorgoroth).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-gorgoroth'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-gorgoroth_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-immortal.nu -$env.config.color_config = (black-metal-immortal) -print $"\e]10;((black-metal-immortal).foreground);((black-metal-immortal).background);((black-metal-immortal).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-immortal'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-immortal_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-khold.nu -$env.config.color_config = (black-metal-khold) -print $"\e]10;((black-metal-khold).foreground);((black-metal-khold).background);((black-metal-khold).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-khold'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-khold_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-marduk.nu -$env.config.color_config = (black-metal-marduk) -print $"\e]10;((black-metal-marduk).foreground);((black-metal-marduk).background);((black-metal-marduk).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-marduk'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-marduk_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-mayhem.nu -$env.config.color_config = (black-metal-mayhem) -print $"\e]10;((black-metal-mayhem).foreground);((black-metal-mayhem).background);((black-metal-mayhem).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-mayhem'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-mayhem_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-nile.nu -$env.config.color_config = (black-metal-nile) -print $"\e]10;((black-metal-nile).foreground);((black-metal-nile).background);((black-metal-nile).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-nile'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-nile_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal-venom.nu -$env.config.color_config = (black-metal-venom) -print $"\e]10;((black-metal-venom).foreground);((black-metal-venom).background);((black-metal-venom).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal-venom'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal-venom_$dt:%Y%m%d$.png -closeapp -exit -clear -use black-metal.nu -$env.config.color_config = (black-metal) -print $"\e]10;((black-metal).foreground);((black-metal).background);((black-metal).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'black-metal'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\black-metal_$dt:%Y%m%d$.png -closeapp -exit -clear -use blazer.nu -$env.config.color_config = (blazer) -print $"\e]10;((blazer).foreground);((blazer).background);((blazer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'blazer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\blazer_$dt:%Y%m%d$.png -closeapp -exit -clear -use borland.nu -$env.config.color_config = (borland) -print $"\e]10;((borland).foreground);((borland).background);((borland).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'borland'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\borland_$dt:%Y%m%d$.png -closeapp -exit -clear -use brewer.nu -$env.config.color_config = (brewer) -print $"\e]10;((brewer).foreground);((brewer).background);((brewer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'brewer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\brewer_$dt:%Y%m%d$.png -closeapp -exit -clear -use bright-lights.nu -$env.config.color_config = (bright-lights) -print $"\e]10;((bright-lights).foreground);((bright-lights).background);((bright-lights).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'bright-lights'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\bright-lights_$dt:%Y%m%d$.png -closeapp -exit -clear -use bright.nu -$env.config.color_config = (bright) -print $"\e]10;((bright).foreground);((bright).background);((bright).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'bright'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\bright_$dt:%Y%m%d$.png -closeapp -exit -clear -use broadcast.nu -$env.config.color_config = (broadcast) -print $"\e]10;((broadcast).foreground);((broadcast).background);((broadcast).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'broadcast'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\broadcast_$dt:%Y%m%d$.png -closeapp -exit -clear -use brogrammer.nu -$env.config.color_config = (brogrammer) -print $"\e]10;((brogrammer).foreground);((brogrammer).background);((brogrammer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'brogrammer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\brogrammer_$dt:%Y%m%d$.png -closeapp -exit -clear -use brushtrees-dark.nu -$env.config.color_config = (brushtrees-dark) -print $"\e]10;((brushtrees-dark).foreground);((brushtrees-dark).background);((brushtrees-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'brushtrees-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\brushtrees-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use brushtrees.nu -$env.config.color_config = (brushtrees) -print $"\e]10;((brushtrees).foreground);((brushtrees).background);((brushtrees).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'brushtrees'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\brushtrees_$dt:%Y%m%d$.png -closeapp -exit -clear -use c64.nu -$env.config.color_config = (c64) -print $"\e]10;((c64).foreground);((c64).background);((c64).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'c64'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\c64_$dt:%Y%m%d$.png -closeapp -exit -clear -use cai.nu -$env.config.color_config = (cai) -print $"\e]10;((cai).foreground);((cai).background);((cai).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'cai'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\cai_$dt:%Y%m%d$.png -closeapp -exit -clear -use chalk.nu -$env.config.color_config = (chalk) -print $"\e]10;((chalk).foreground);((chalk).background);((chalk).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'chalk'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\chalk_$dt:%Y%m%d$.png -closeapp -exit -clear -use chalkboard.nu -$env.config.color_config = (chalkboard) -print $"\e]10;((chalkboard).foreground);((chalkboard).background);((chalkboard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'chalkboard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\chalkboard_$dt:%Y%m%d$.png -closeapp -exit -clear -use challenger-deep.nu -$env.config.color_config = (challenger-deep) -print $"\e]10;((challenger-deep).foreground);((challenger-deep).background);((challenger-deep).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'challenger-deep'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\challenger-deep_$dt:%Y%m%d$.png -closeapp -exit -clear -use ciapre.nu -$env.config.color_config = (ciapre) -print $"\e]10;((ciapre).foreground);((ciapre).background);((ciapre).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ciapre'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ciapre_$dt:%Y%m%d$.png -closeapp -exit -clear -use circus.nu -$env.config.color_config = (circus) -print $"\e]10;((circus).foreground);((circus).background);((circus).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'circus'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\circus_$dt:%Y%m%d$.png -closeapp -exit -clear -use classic-dark.nu -$env.config.color_config = (classic-dark) -print $"\e]10;((classic-dark).foreground);((classic-dark).background);((classic-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'classic-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\classic-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use classic-light.nu -$env.config.color_config = (classic-light) -print $"\e]10;((classic-light).foreground);((classic-light).background);((classic-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'classic-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\classic-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use clone-of-ubuntu.nu -$env.config.color_config = (clone-of-ubuntu) -print $"\e]10;((clone-of-ubuntu).foreground);((clone-of-ubuntu).background);((clone-of-ubuntu).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'clone-of-ubuntu'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\clone-of-ubuntu_$dt:%Y%m%d$.png -closeapp -exit -clear -use clrs.nu -$env.config.color_config = (clrs) -print $"\e]10;((clrs).foreground);((clrs).background);((clrs).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'clrs'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\clrs_$dt:%Y%m%d$.png -closeapp -exit -clear -use cobalt-neon.nu -$env.config.color_config = (cobalt-neon) -print $"\e]10;((cobalt-neon).foreground);((cobalt-neon).background);((cobalt-neon).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'cobalt-neon'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\cobalt-neon_$dt:%Y%m%d$.png -closeapp -exit -clear -use cobalt2.nu -$env.config.color_config = (cobalt2) -print $"\e]10;((cobalt2).foreground);((cobalt2).background);((cobalt2).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'cobalt2'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\cobalt2_$dt:%Y%m%d$.png -closeapp -exit -clear -use codeschool.nu -$env.config.color_config = (codeschool) -print $"\e]10;((codeschool).foreground);((codeschool).background);((codeschool).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'codeschool'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\codeschool_$dt:%Y%m%d$.png -closeapp -exit -clear -use corvine.nu -$env.config.color_config = (corvine) -print $"\e]10;((corvine).foreground);((corvine).background);((corvine).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'corvine'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\corvine_$dt:%Y%m%d$.png -closeapp -exit -clear -use crayon-pony-fish.nu -$env.config.color_config = (crayon-pony-fish) -print $"\e]10;((crayon-pony-fish).foreground);((crayon-pony-fish).background);((crayon-pony-fish).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'crayon-pony-fish'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\crayon-pony-fish_$dt:%Y%m%d$.png -closeapp -exit -clear -use cupcake.nu -$env.config.color_config = (cupcake) -print $"\e]10;((cupcake).foreground);((cupcake).background);((cupcake).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'cupcake'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\cupcake_$dt:%Y%m%d$.png -closeapp -exit -clear -use cupertino.nu -$env.config.color_config = (cupertino) -print $"\e]10;((cupertino).foreground);((cupertino).background);((cupertino).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'cupertino'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\cupertino_$dt:%Y%m%d$.png -closeapp -exit -clear -use danqing.nu -$env.config.color_config = (danqing) -print $"\e]10;((danqing).foreground);((danqing).background);((danqing).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'danqing'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\danqing_$dt:%Y%m%d$.png -closeapp -exit -clear -use darcula.nu -$env.config.color_config = (darcula) -print $"\e]10;((darcula).foreground);((darcula).background);((darcula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'darcula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\darcula_$dt:%Y%m%d$.png -closeapp -exit -clear -use dark-pastel.nu -$env.config.color_config = (dark-pastel) -print $"\e]10;((dark-pastel).foreground);((dark-pastel).background);((dark-pastel).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dark-pastel'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dark-pastel_$dt:%Y%m%d$.png -closeapp -exit -clear -use darkmoss.nu -$env.config.color_config = (darkmoss) -print $"\e]10;((darkmoss).foreground);((darkmoss).background);((darkmoss).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'darkmoss'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\darkmoss_$dt:%Y%m%d$.png -closeapp -exit -clear -use darkside.nu -$env.config.color_config = (darkside) -print $"\e]10;((darkside).foreground);((darkside).background);((darkside).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'darkside'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\darkside_$dt:%Y%m%d$.png -closeapp -exit -clear -use darktooth.nu -$env.config.color_config = (darktooth) -print $"\e]10;((darktooth).foreground);((darktooth).background);((darktooth).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'darktooth'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\darktooth_$dt:%Y%m%d$.png -closeapp -exit -clear -use darkviolet.nu -$env.config.color_config = (darkviolet) -print $"\e]10;((darkviolet).foreground);((darkviolet).background);((darkviolet).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'darkviolet'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\darkviolet_$dt:%Y%m%d$.png -closeapp -exit -clear -use decaf.nu -$env.config.color_config = (decaf) -print $"\e]10;((decaf).foreground);((decaf).background);((decaf).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'decaf'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\decaf_$dt:%Y%m%d$.png -closeapp -exit -clear -use default-dark.nu -$env.config.color_config = (default-dark) -print $"\e]10;((default-dark).foreground);((default-dark).background);((default-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'default-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\default-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use default-light.nu -$env.config.color_config = (default-light) -print $"\e]10;((default-light).foreground);((default-light).background);((default-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'default-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\default-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use desert-night.nu -$env.config.color_config = (desert-night) -print $"\e]10;((desert-night).foreground);((desert-night).background);((desert-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'desert-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\desert-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use desert.nu -$env.config.color_config = (desert) -print $"\e]10;((desert).foreground);((desert).background);((desert).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'desert'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\desert_$dt:%Y%m%d$.png -closeapp -exit -clear -use dimmed-monokai.nu -$env.config.color_config = (dimmed-monokai) -print $"\e]10;((dimmed-monokai).foreground);((dimmed-monokai).background);((dimmed-monokai).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dimmed-monokai'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dimmed-monokai_$dt:%Y%m%d$.png -closeapp -exit -clear -use dirtysea.nu -$env.config.color_config = (dirtysea) -print $"\e]10;((dirtysea).foreground);((dirtysea).background);((dirtysea).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dirtysea'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dirtysea_$dt:%Y%m%d$.png -closeapp -exit -clear -use dot-gov.nu -$env.config.color_config = (dot-gov) -print $"\e]10;((dot-gov).foreground);((dot-gov).background);((dot-gov).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dot-gov'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dot-gov_$dt:%Y%m%d$.png -closeapp -exit -clear -use dracula.nu -$env.config.color_config = (dracula) -print $"\e]10;((dracula).foreground);((dracula).background);((dracula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dracula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dracula_$dt:%Y%m%d$.png -closeapp -exit -clear -use dumbledore.nu -$env.config.color_config = (dumbledore) -print $"\e]10;((dumbledore).foreground);((dumbledore).background);((dumbledore).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'dumbledore'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\dumbledore_$dt:%Y%m%d$.png -closeapp -exit -clear -use duotone-dark.nu -$env.config.color_config = (duotone-dark) -print $"\e]10;((duotone-dark).foreground);((duotone-dark).background);((duotone-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'duotone-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\duotone-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use e-n-c-o-m.nu -$env.config.color_config = (e-n-c-o-m) -print $"\e]10;((e-n-c-o-m).foreground);((e-n-c-o-m).background);((e-n-c-o-m).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'e-n-c-o-m'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\e-n-c-o-m_$dt:%Y%m%d$.png -closeapp -exit -clear -use earthsong.nu -$env.config.color_config = (earthsong) -print $"\e]10;((earthsong).foreground);((earthsong).background);((earthsong).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'earthsong'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\earthsong_$dt:%Y%m%d$.png -closeapp -exit -clear -use edge-dark.nu -$env.config.color_config = (edge-dark) -print $"\e]10;((edge-dark).foreground);((edge-dark).background);((edge-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'edge-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\edge-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use edge-light.nu -$env.config.color_config = (edge-light) -print $"\e]10;((edge-light).foreground);((edge-light).background);((edge-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'edge-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\edge-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use eighties.nu -$env.config.color_config = (eighties) -print $"\e]10;((eighties).foreground);((eighties).background);((eighties).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'eighties'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\eighties_$dt:%Y%m%d$.png -closeapp -exit -clear -use elemental.nu -$env.config.color_config = (elemental) -print $"\e]10;((elemental).foreground);((elemental).background);((elemental).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'elemental'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\elemental_$dt:%Y%m%d$.png -closeapp -exit -clear -use elementary.nu -$env.config.color_config = (elementary) -print $"\e]10;((elementary).foreground);((elementary).background);((elementary).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'elementary'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\elementary_$dt:%Y%m%d$.png -closeapp -exit -clear -use elic.nu -$env.config.color_config = (elic) -print $"\e]10;((elic).foreground);((elic).background);((elic).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'elic'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\elic_$dt:%Y%m%d$.png -closeapp -exit -clear -use elio.nu -$env.config.color_config = (elio) -print $"\e]10;((elio).foreground);((elio).background);((elio).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'elio'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\elio_$dt:%Y%m%d$.png -closeapp -exit -clear -use embark.nu -$env.config.color_config = (embark) -print $"\e]10;((embark).foreground);((embark).background);((embark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'embark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\embark_$dt:%Y%m%d$.png -closeapp -exit -clear -use embers.nu -$env.config.color_config = (embers) -print $"\e]10;((embers).foreground);((embers).background);((embers).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'embers'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\embers_$dt:%Y%m%d$.png -closeapp -exit -clear -use equilibrium-dark.nu -$env.config.color_config = (equilibrium-dark) -print $"\e]10;((equilibrium-dark).foreground);((equilibrium-dark).background);((equilibrium-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'equilibrium-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\equilibrium-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use equilibrium-gray-dark.nu -$env.config.color_config = (equilibrium-gray-dark) -print $"\e]10;((equilibrium-gray-dark).foreground);((equilibrium-gray-dark).background);((equilibrium-gray-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'equilibrium-gray-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\equilibrium-gray-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use equilibrium-gray-light.nu -$env.config.color_config = (equilibrium-gray-light) -print $"\e]10;((equilibrium-gray-light).foreground);((equilibrium-gray-light).background);((equilibrium-gray-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'equilibrium-gray-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\equilibrium-gray-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use equilibrium-light.nu -$env.config.color_config = (equilibrium-light) -print $"\e]10;((equilibrium-light).foreground);((equilibrium-light).background);((equilibrium-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'equilibrium-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\equilibrium-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use espresso-libre.nu -$env.config.color_config = (espresso-libre) -print $"\e]10;((espresso-libre).foreground);((espresso-libre).background);((espresso-libre).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'espresso-libre'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\espresso-libre_$dt:%Y%m%d$.png -closeapp -exit -clear -use espresso.nu -$env.config.color_config = (espresso) -print $"\e]10;((espresso).foreground);((espresso).background);((espresso).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'espresso'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\espresso_$dt:%Y%m%d$.png -closeapp -exit -clear -use eva-dim.nu -$env.config.color_config = (eva-dim) -print $"\e]10;((eva-dim).foreground);((eva-dim).background);((eva-dim).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'eva-dim'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\eva-dim_$dt:%Y%m%d$.png -closeapp -exit -clear -use eva.nu -$env.config.color_config = (eva) -print $"\e]10;((eva).foreground);((eva).background);((eva).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'eva'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\eva_$dt:%Y%m%d$.png -closeapp -exit -clear -use everforest-light.nu -$env.config.color_config = (everforest-light) -print $"\e]10;((everforest-light).foreground);((everforest-light).background);((everforest-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'everforest-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\everforest-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use everforest.nu -$env.config.color_config = (everforest) -print $"\e]10;((everforest).foreground);((everforest).background);((everforest).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'everforest'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\everforest_$dt:%Y%m%d$.png -closeapp -exit -clear -use falcon.nu -$env.config.color_config = (falcon) -print $"\e]10;((falcon).foreground);((falcon).background);((falcon).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'falcon'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\falcon_$dt:%Y%m%d$.png -closeapp -exit -clear -use farin.nu -$env.config.color_config = (farin) -print $"\e]10;((farin).foreground);((farin).background);((farin).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'farin'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\farin_$dt:%Y%m%d$.png -closeapp -exit -clear -use ffive.nu -$env.config.color_config = (ffive) -print $"\e]10;((ffive).foreground);((ffive).background);((ffive).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ffive'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ffive_$dt:%Y%m%d$.png -closeapp -exit -clear -use fideloper.nu -$env.config.color_config = (fideloper) -print $"\e]10;((fideloper).foreground);((fideloper).background);((fideloper).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'fideloper'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\fideloper_$dt:%Y%m%d$.png -closeapp -exit -clear -use fishtank.nu -$env.config.color_config = (fishtank) -print $"\e]10;((fishtank).foreground);((fishtank).background);((fishtank).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'fishtank'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\fishtank_$dt:%Y%m%d$.png -closeapp -exit -clear -use flat.nu -$env.config.color_config = (flat) -print $"\e]10;((flat).foreground);((flat).background);((flat).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'flat'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\flat_$dt:%Y%m%d$.png -closeapp -exit -clear -use flatland.nu -$env.config.color_config = (flatland) -print $"\e]10;((flatland).foreground);((flatland).background);((flatland).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'flatland'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\flatland_$dt:%Y%m%d$.png -closeapp -exit -clear -use floraverse.nu -$env.config.color_config = (floraverse) -print $"\e]10;((floraverse).foreground);((floraverse).background);((floraverse).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'floraverse'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\floraverse_$dt:%Y%m%d$.png -closeapp -exit -clear -use forest-night.nu -$env.config.color_config = (forest-night) -print $"\e]10;((forest-night).foreground);((forest-night).background);((forest-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'forest-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\forest-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use foxnightly.nu -$env.config.color_config = (foxnightly) -print $"\e]10;((foxnightly).foreground);((foxnightly).background);((foxnightly).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'foxnightly'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\foxnightly_$dt:%Y%m%d$.png -closeapp -exit -clear -use framer.nu -$env.config.color_config = (framer) -print $"\e]10;((framer).foreground);((framer).background);((framer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'framer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\framer_$dt:%Y%m%d$.png -closeapp -exit -clear -use freya.nu -$env.config.color_config = (freya) -print $"\e]10;((freya).foreground);((freya).background);((freya).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'freya'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\freya_$dt:%Y%m%d$.png -closeapp -exit -clear -use frontend-delight.nu -$env.config.color_config = (frontend-delight) -print $"\e]10;((frontend-delight).foreground);((frontend-delight).background);((frontend-delight).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'frontend-delight'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\frontend-delight_$dt:%Y%m%d$.png -closeapp -exit -clear -use frontend-fun-forrest.nu -$env.config.color_config = (frontend-fun-forrest) -print $"\e]10;((frontend-fun-forrest).foreground);((frontend-fun-forrest).background);((frontend-fun-forrest).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'frontend-fun-forrest'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\frontend-fun-forrest_$dt:%Y%m%d$.png -closeapp -exit -clear -use frontend-galaxy.nu -$env.config.color_config = (frontend-galaxy) -print $"\e]10;((frontend-galaxy).foreground);((frontend-galaxy).background);((frontend-galaxy).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'frontend-galaxy'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\frontend-galaxy_$dt:%Y%m%d$.png -closeapp -exit -clear -use fruit-soda.nu -$env.config.color_config = (fruit-soda) -print $"\e]10;((fruit-soda).foreground);((fruit-soda).background);((fruit-soda).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'fruit-soda'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\fruit-soda_$dt:%Y%m%d$.png -closeapp -exit -clear -use gigavolt.nu -$env.config.color_config = (gigavolt) -print $"\e]10;((gigavolt).foreground);((gigavolt).background);((gigavolt).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gigavolt'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gigavolt_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-dark-colorblind.nu -$env.config.color_config = (github-dark-colorblind) -print $"\e]10;((github-dark-colorblind).foreground);((github-dark-colorblind).background);((github-dark-colorblind).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-dark-colorblind'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-dark-colorblind_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-dark-default.nu -$env.config.color_config = (github-dark-default) -print $"\e]10;((github-dark-default).foreground);((github-dark-default).background);((github-dark-default).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-dark-default'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-dark-default_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-dark.nu -$env.config.color_config = (github-dark) -print $"\e]10;((github-dark).foreground);((github-dark).background);((github-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-dimmed.nu -$env.config.color_config = (github-dimmed) -print $"\e]10;((github-dimmed).foreground);((github-dimmed).background);((github-dimmed).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-dimmed'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-dimmed_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-light-colorblind.nu -$env.config.color_config = (github-light-colorblind) -print $"\e]10;((github-light-colorblind).foreground);((github-light-colorblind).background);((github-light-colorblind).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-light-colorblind'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-light-colorblind_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-light-default.nu -$env.config.color_config = (github-light-default) -print $"\e]10;((github-light-default).foreground);((github-light-default).background);((github-light-default).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-light-default'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-light-default_$dt:%Y%m%d$.png -closeapp -exit -clear -use github-light.nu -$env.config.color_config = (github-light) -print $"\e]10;((github-light).foreground);((github-light).background);((github-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use github.nu -$env.config.color_config = (github) -print $"\e]10;((github).foreground);((github).background);((github).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'github'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\github_$dt:%Y%m%d$.png -closeapp -exit -clear -use glacier.nu -$env.config.color_config = (glacier) -print $"\e]10;((glacier).foreground);((glacier).background);((glacier).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'glacier'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\glacier_$dt:%Y%m%d$.png -closeapp -exit -clear -use goa-base.nu -$env.config.color_config = (goa-base) -print $"\e]10;((goa-base).foreground);((goa-base).background);((goa-base).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'goa-base'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\goa-base_$dt:%Y%m%d$.png -closeapp -exit -clear -use gooey.nu -$env.config.color_config = (gooey) -print $"\e]10;((gooey).foreground);((gooey).background);((gooey).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gooey'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gooey_$dt:%Y%m%d$.png -closeapp -exit -clear -use google-dark.nu -$env.config.color_config = (google-dark) -print $"\e]10;((google-dark).foreground);((google-dark).background);((google-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'google-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\google-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use google-light.nu -$env.config.color_config = (google-light) -print $"\e]10;((google-light).foreground);((google-light).background);((google-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'google-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\google-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use grape.nu -$env.config.color_config = (grape) -print $"\e]10;((grape).foreground);((grape).background);((grape).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'grape'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\grape_$dt:%Y%m%d$.png -closeapp -exit -clear -use grass.nu -$env.config.color_config = (grass) -print $"\e]10;((grass).foreground);((grass).background);((grass).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'grass'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\grass_$dt:%Y%m%d$.png -closeapp -exit -clear -use grayscale-dark.nu -$env.config.color_config = (grayscale-dark) -print $"\e]10;((grayscale-dark).foreground);((grayscale-dark).background);((grayscale-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'grayscale-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\grayscale-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use grayscale-light.nu -$env.config.color_config = (grayscale-light) -print $"\e]10;((grayscale-light).foreground);((grayscale-light).background);((grayscale-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'grayscale-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\grayscale-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use green-screen.nu -$env.config.color_config = (green-screen) -print $"\e]10;((green-screen).foreground);((green-screen).background);((green-screen).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'green-screen'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\green-screen_$dt:%Y%m%d$.png -closeapp -exit -clear -use greenscreen.nu -$env.config.color_config = (greenscreen) -print $"\e]10;((greenscreen).foreground);((greenscreen).background);((greenscreen).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'greenscreen'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\greenscreen_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbit.nu -$env.config.color_config = (gruvbit) -print $"\e]10;((gruvbit).foreground);((gruvbit).background);((gruvbit).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbit'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbit_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-dark-hard.nu -$env.config.color_config = (gruvbox-dark-hard) -print $"\e]10;((gruvbox-dark-hard).foreground);((gruvbox-dark-hard).background);((gruvbox-dark-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-dark-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-dark-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-dark-medium.nu -$env.config.color_config = (gruvbox-dark-medium) -print $"\e]10;((gruvbox-dark-medium).foreground);((gruvbox-dark-medium).background);((gruvbox-dark-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-dark-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-dark-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-dark-pale.nu -$env.config.color_config = (gruvbox-dark-pale) -print $"\e]10;((gruvbox-dark-pale).foreground);((gruvbox-dark-pale).background);((gruvbox-dark-pale).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-dark-pale'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-dark-pale_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-dark-soft.nu -$env.config.color_config = (gruvbox-dark-soft) -print $"\e]10;((gruvbox-dark-soft).foreground);((gruvbox-dark-soft).background);((gruvbox-dark-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-dark-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-dark-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-dark.nu -$env.config.color_config = (gruvbox-dark) -print $"\e]10;((gruvbox-dark).foreground);((gruvbox-dark).background);((gruvbox-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-light-hard.nu -$env.config.color_config = (gruvbox-light-hard) -print $"\e]10;((gruvbox-light-hard).foreground);((gruvbox-light-hard).background);((gruvbox-light-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-light-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-light-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-light-medium.nu -$env.config.color_config = (gruvbox-light-medium) -print $"\e]10;((gruvbox-light-medium).foreground);((gruvbox-light-medium).background);((gruvbox-light-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-light-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-light-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-light-soft.nu -$env.config.color_config = (gruvbox-light-soft) -print $"\e]10;((gruvbox-light-soft).foreground);((gruvbox-light-soft).background);((gruvbox-light-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-light-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-light-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-dark-hard.nu -$env.config.color_config = (gruvbox-material-dark-hard) -print $"\e]10;((gruvbox-material-dark-hard).foreground);((gruvbox-material-dark-hard).background);((gruvbox-material-dark-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-dark-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-dark-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-dark-medium.nu -$env.config.color_config = (gruvbox-material-dark-medium) -print $"\e]10;((gruvbox-material-dark-medium).foreground);((gruvbox-material-dark-medium).background);((gruvbox-material-dark-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-dark-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-dark-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-dark-soft.nu -$env.config.color_config = (gruvbox-material-dark-soft) -print $"\e]10;((gruvbox-material-dark-soft).foreground);((gruvbox-material-dark-soft).background);((gruvbox-material-dark-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-dark-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-dark-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-light-hard.nu -$env.config.color_config = (gruvbox-material-light-hard) -print $"\e]10;((gruvbox-material-light-hard).foreground);((gruvbox-material-light-hard).background);((gruvbox-material-light-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-light-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-light-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-light-medium.nu -$env.config.color_config = (gruvbox-material-light-medium) -print $"\e]10;((gruvbox-material-light-medium).foreground);((gruvbox-material-light-medium).background);((gruvbox-material-light-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-light-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-light-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-material-light-soft.nu -$env.config.color_config = (gruvbox-material-light-soft) -print $"\e]10;((gruvbox-material-light-soft).foreground);((gruvbox-material-light-soft).background);((gruvbox-material-light-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-material-light-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-material-light-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-dark-hard.nu -$env.config.color_config = (gruvbox-mix-dark-hard) -print $"\e]10;((gruvbox-mix-dark-hard).foreground);((gruvbox-mix-dark-hard).background);((gruvbox-mix-dark-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-dark-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-dark-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-dark-medium.nu -$env.config.color_config = (gruvbox-mix-dark-medium) -print $"\e]10;((gruvbox-mix-dark-medium).foreground);((gruvbox-mix-dark-medium).background);((gruvbox-mix-dark-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-dark-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-dark-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-dark-soft.nu -$env.config.color_config = (gruvbox-mix-dark-soft) -print $"\e]10;((gruvbox-mix-dark-soft).foreground);((gruvbox-mix-dark-soft).background);((gruvbox-mix-dark-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-dark-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-dark-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-light-hard.nu -$env.config.color_config = (gruvbox-mix-light-hard) -print $"\e]10;((gruvbox-mix-light-hard).foreground);((gruvbox-mix-light-hard).background);((gruvbox-mix-light-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-light-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-light-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-light-medium.nu -$env.config.color_config = (gruvbox-mix-light-medium) -print $"\e]10;((gruvbox-mix-light-medium).foreground);((gruvbox-mix-light-medium).background);((gruvbox-mix-light-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-light-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-light-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-mix-light-soft.nu -$env.config.color_config = (gruvbox-mix-light-soft) -print $"\e]10;((gruvbox-mix-light-soft).foreground);((gruvbox-mix-light-soft).background);((gruvbox-mix-light-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-mix-light-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-mix-light-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-dark-hard.nu -$env.config.color_config = (gruvbox-original-dark-hard) -print $"\e]10;((gruvbox-original-dark-hard).foreground);((gruvbox-original-dark-hard).background);((gruvbox-original-dark-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-dark-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-dark-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-dark-medium.nu -$env.config.color_config = (gruvbox-original-dark-medium) -print $"\e]10;((gruvbox-original-dark-medium).foreground);((gruvbox-original-dark-medium).background);((gruvbox-original-dark-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-dark-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-dark-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-dark-soft.nu -$env.config.color_config = (gruvbox-original-dark-soft) -print $"\e]10;((gruvbox-original-dark-soft).foreground);((gruvbox-original-dark-soft).background);((gruvbox-original-dark-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-dark-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-dark-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-light-hard.nu -$env.config.color_config = (gruvbox-original-light-hard) -print $"\e]10;((gruvbox-original-light-hard).foreground);((gruvbox-original-light-hard).background);((gruvbox-original-light-hard).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-light-hard'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-light-hard_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-light-medium.nu -$env.config.color_config = (gruvbox-original-light-medium) -print $"\e]10;((gruvbox-original-light-medium).foreground);((gruvbox-original-light-medium).background);((gruvbox-original-light-medium).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-light-medium'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-light-medium_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox-original-light-soft.nu -$env.config.color_config = (gruvbox-original-light-soft) -print $"\e]10;((gruvbox-original-light-soft).foreground);((gruvbox-original-light-soft).background);((gruvbox-original-light-soft).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox-original-light-soft'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox-original-light-soft_$dt:%Y%m%d$.png -closeapp -exit -clear -use gruvbox.nu -$env.config.color_config = (gruvbox) -print $"\e]10;((gruvbox).foreground);((gruvbox).background);((gruvbox).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'gruvbox'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\gruvbox_$dt:%Y%m%d$.png -closeapp -exit -clear -use hardcore.nu -$env.config.color_config = (hardcore) -print $"\e]10;((hardcore).foreground);((hardcore).background);((hardcore).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hardcore'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hardcore_$dt:%Y%m%d$.png -closeapp -exit -clear -use harmonic-dark.nu -$env.config.color_config = (harmonic-dark) -print $"\e]10;((harmonic-dark).foreground);((harmonic-dark).background);((harmonic-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'harmonic-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\harmonic-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use harmonic-light.nu -$env.config.color_config = (harmonic-light) -print $"\e]10;((harmonic-light).foreground);((harmonic-light).background);((harmonic-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'harmonic-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\harmonic-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use harmonic16-dark.nu -$env.config.color_config = (harmonic16-dark) -print $"\e]10;((harmonic16-dark).foreground);((harmonic16-dark).background);((harmonic16-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'harmonic16-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\harmonic16-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use harmonic16-light.nu -$env.config.color_config = (harmonic16-light) -print $"\e]10;((harmonic16-light).foreground);((harmonic16-light).background);((harmonic16-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'harmonic16-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\harmonic16-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use harper.nu -$env.config.color_config = (harper) -print $"\e]10;((harper).foreground);((harper).background);((harper).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'harper'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\harper_$dt:%Y%m%d$.png -closeapp -exit -clear -use heetch-light.nu -$env.config.color_config = (heetch-light) -print $"\e]10;((heetch-light).foreground);((heetch-light).background);((heetch-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'heetch-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\heetch-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use heetch.nu -$env.config.color_config = (heetch) -print $"\e]10;((heetch).foreground);((heetch).background);((heetch).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'heetch'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\heetch_$dt:%Y%m%d$.png -closeapp -exit -clear -use helios.nu -$env.config.color_config = (helios) -print $"\e]10;((helios).foreground);((helios).background);((helios).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'helios'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\helios_$dt:%Y%m%d$.png -closeapp -exit -clear -use hemisu-dark.nu -$env.config.color_config = (hemisu-dark) -print $"\e]10;((hemisu-dark).foreground);((hemisu-dark).background);((hemisu-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hemisu-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hemisu-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use hemisu-light.nu -$env.config.color_config = (hemisu-light) -print $"\e]10;((hemisu-light).foreground);((hemisu-light).background);((hemisu-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hemisu-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hemisu-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use highway.nu -$env.config.color_config = (highway) -print $"\e]10;((highway).foreground);((highway).background);((highway).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'highway'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\highway_$dt:%Y%m%d$.png -closeapp -exit -clear -use hipster-green.nu -$env.config.color_config = (hipster-green) -print $"\e]10;((hipster-green).foreground);((hipster-green).background);((hipster-green).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hipster-green'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hipster-green_$dt:%Y%m%d$.png -closeapp -exit -clear -use homebrew.nu -$env.config.color_config = (homebrew) -print $"\e]10;((homebrew).foreground);((homebrew).background);((homebrew).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'homebrew'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\homebrew_$dt:%Y%m%d$.png -closeapp -exit -clear -use hopscotch.nu -$env.config.color_config = (hopscotch) -print $"\e]10;((hopscotch).foreground);((hopscotch).background);((hopscotch).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hopscotch'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hopscotch_$dt:%Y%m%d$.png -closeapp -exit -clear -use horizon-dark.nu -$env.config.color_config = (horizon-dark) -print $"\e]10;((horizon-dark).foreground);((horizon-dark).background);((horizon-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'horizon-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\horizon-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use horizon-light.nu -$env.config.color_config = (horizon-light) -print $"\e]10;((horizon-light).foreground);((horizon-light).background);((horizon-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'horizon-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\horizon-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use horizon-terminal-dark.nu -$env.config.color_config = (horizon-terminal-dark) -print $"\e]10;((horizon-terminal-dark).foreground);((horizon-terminal-dark).background);((horizon-terminal-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'horizon-terminal-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\horizon-terminal-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use horizon-terminal-light.nu -$env.config.color_config = (horizon-terminal-light) -print $"\e]10;((horizon-terminal-light).foreground);((horizon-terminal-light).background);((horizon-terminal-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'horizon-terminal-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\horizon-terminal-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use humanoid-dark.nu -$env.config.color_config = (humanoid-dark) -print $"\e]10;((humanoid-dark).foreground);((humanoid-dark).background);((humanoid-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'humanoid-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\humanoid-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use humanoid-light.nu -$env.config.color_config = (humanoid-light) -print $"\e]10;((humanoid-light).foreground);((humanoid-light).background);((humanoid-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'humanoid-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\humanoid-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use hurtado.nu -$env.config.color_config = (hurtado) -print $"\e]10;((hurtado).foreground);((hurtado).background);((hurtado).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hurtado'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hurtado_$dt:%Y%m%d$.png -closeapp -exit -clear -use hybrid.nu -$env.config.color_config = (hybrid) -print $"\e]10;((hybrid).foreground);((hybrid).background);((hybrid).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'hybrid'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\hybrid_$dt:%Y%m%d$.png -closeapp -exit -clear -use ia-dark.nu -$env.config.color_config = (ia-dark) -print $"\e]10;((ia-dark).foreground);((ia-dark).background);((ia-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ia-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ia-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use ia-light.nu -$env.config.color_config = (ia-light) -print $"\e]10;((ia-light).foreground);((ia-light).background);((ia-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ia-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ia-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use ibm3270.nu -$env.config.color_config = (ibm3270) -print $"\e]10;((ibm3270).foreground);((ibm3270).background);((ibm3270).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ibm3270'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ibm3270_$dt:%Y%m%d$.png -closeapp -exit -clear -use ic-green-ppl.nu -$env.config.color_config = (ic-green-ppl) -print $"\e]10;((ic-green-ppl).foreground);((ic-green-ppl).background);((ic-green-ppl).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ic-green-ppl'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ic-green-ppl_$dt:%Y%m%d$.png -closeapp -exit -clear -use ic-orange-ppl.nu -$env.config.color_config = (ic-orange-ppl) -print $"\e]10;((ic-orange-ppl).foreground);((ic-orange-ppl).background);((ic-orange-ppl).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ic-orange-ppl'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ic-orange-ppl_$dt:%Y%m%d$.png -closeapp -exit -clear -use iceberg-light.nu -$env.config.color_config = (iceberg-light) -print $"\e]10;((iceberg-light).foreground);((iceberg-light).background);((iceberg-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'iceberg-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\iceberg-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use icy.nu -$env.config.color_config = (icy) -print $"\e]10;((icy).foreground);((icy).background);((icy).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'icy'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\icy_$dt:%Y%m%d$.png -closeapp -exit -clear -use idle-toes.nu -$env.config.color_config = (idle-toes) -print $"\e]10;((idle-toes).foreground);((idle-toes).background);((idle-toes).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'idle-toes'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\idle-toes_$dt:%Y%m%d$.png -closeapp -exit -clear -use idm_3b.nu -$env.config.color_config = (idm_3b) -print $"\e]10;((idm_3b).foreground);((idm_3b).background);((idm_3b).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'idm_3b'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\idm_3b_$dt:%Y%m%d$.png -closeapp -exit -clear -use ir-black.nu -$env.config.color_config = (ir-black) -print $"\e]10;((ir-black).foreground);((ir-black).background);((ir-black).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ir-black'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ir-black_$dt:%Y%m%d$.png -closeapp -exit -clear -use irblack.nu -$env.config.color_config = (irblack) -print $"\e]10;((irblack).foreground);((irblack).background);((irblack).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'irblack'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\irblack_$dt:%Y%m%d$.png -closeapp -exit -clear -use isotope.nu -$env.config.color_config = (isotope) -print $"\e]10;((isotope).foreground);((isotope).background);((isotope).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'isotope'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\isotope_$dt:%Y%m%d$.png -closeapp -exit -clear -use jackie-brown.nu -$env.config.color_config = (jackie-brown) -print $"\e]10;((jackie-brown).foreground);((jackie-brown).background);((jackie-brown).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'jackie-brown'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\jackie-brown_$dt:%Y%m%d$.png -closeapp -exit -clear -use japanesque.nu -$env.config.color_config = (japanesque) -print $"\e]10;((japanesque).foreground);((japanesque).background);((japanesque).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'japanesque'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\japanesque_$dt:%Y%m%d$.png -closeapp -exit -clear -use jellybeans.nu -$env.config.color_config = (jellybeans) -print $"\e]10;((jellybeans).foreground);((jellybeans).background);((jellybeans).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'jellybeans'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\jellybeans_$dt:%Y%m%d$.png -closeapp -exit -clear -use jet-brains-darcula.nu -$env.config.color_config = (jet-brains-darcula) -print $"\e]10;((jet-brains-darcula).foreground);((jet-brains-darcula).background);((jet-brains-darcula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'jet-brains-darcula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\jet-brains-darcula_$dt:%Y%m%d$.png -closeapp -exit -clear -use jup.nu -$env.config.color_config = (jup) -print $"\e]10;((jup).foreground);((jup).background);((jup).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'jup'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\jup_$dt:%Y%m%d$.png -closeapp -exit -clear -use kibble.nu -$env.config.color_config = (kibble) -print $"\e]10;((kibble).foreground);((kibble).background);((kibble).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'kibble'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\kibble_$dt:%Y%m%d$.png -closeapp -exit -clear -use kimber.nu -$env.config.color_config = (kimber) -print $"\e]10;((kimber).foreground);((kimber).background);((kimber).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'kimber'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\kimber_$dt:%Y%m%d$.png -closeapp -exit -clear -use later-this-evening.nu -$env.config.color_config = (later-this-evening) -print $"\e]10;((later-this-evening).foreground);((later-this-evening).background);((later-this-evening).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'later-this-evening'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\later-this-evening_$dt:%Y%m%d$.png -closeapp -exit -clear -use lavandula.nu -$env.config.color_config = (lavandula) -print $"\e]10;((lavandula).foreground);((lavandula).background);((lavandula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'lavandula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\lavandula_$dt:%Y%m%d$.png -closeapp -exit -clear -use liquid-carbon-transparent.nu -$env.config.color_config = (liquid-carbon-transparent) -print $"\e]10;((liquid-carbon-transparent).foreground);((liquid-carbon-transparent).background);((liquid-carbon-transparent).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'liquid-carbon-transparent'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\liquid-carbon-transparent_$dt:%Y%m%d$.png -closeapp -exit -clear -use liquid-carbon.nu -$env.config.color_config = (liquid-carbon) -print $"\e]10;((liquid-carbon).foreground);((liquid-carbon).background);((liquid-carbon).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'liquid-carbon'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\liquid-carbon_$dt:%Y%m%d$.png -closeapp -exit -clear -use london-tube.nu -$env.config.color_config = (london-tube) -print $"\e]10;((london-tube).foreground);((london-tube).background);((london-tube).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'london-tube'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\london-tube_$dt:%Y%m%d$.png -closeapp -exit -clear -use macintosh.nu -$env.config.color_config = (macintosh) -print $"\e]10;((macintosh).foreground);((macintosh).background);((macintosh).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'macintosh'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\macintosh_$dt:%Y%m%d$.png -closeapp -exit -clear -use maia.nu -$env.config.color_config = (maia) -print $"\e]10;((maia).foreground);((maia).background);((maia).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'maia'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\maia_$dt:%Y%m%d$.png -closeapp -exit -clear -use man-page.nu -$env.config.color_config = (man-page) -print $"\e]10;((man-page).foreground);((man-page).background);((man-page).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'man-page'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\man-page_$dt:%Y%m%d$.png -closeapp -exit -clear -use mar.nu -$env.config.color_config = (mar) -print $"\e]10;((mar).foreground);((mar).background);((mar).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mar'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mar_$dt:%Y%m%d$.png -closeapp -exit -clear -use marrakesh.nu -$env.config.color_config = (marrakesh) -print $"\e]10;((marrakesh).foreground);((marrakesh).background);((marrakesh).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'marrakesh'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\marrakesh_$dt:%Y%m%d$.png -closeapp -exit -clear -use materia.nu -$env.config.color_config = (materia) -print $"\e]10;((materia).foreground);((materia).background);((materia).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'materia'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\materia_$dt:%Y%m%d$.png -closeapp -exit -clear -use material-dark.nu -$env.config.color_config = (material-dark) -print $"\e]10;((material-dark).foreground);((material-dark).background);((material-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use material-darker.nu -$env.config.color_config = (material-darker) -print $"\e]10;((material-darker).foreground);((material-darker).background);((material-darker).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material-darker'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material-darker_$dt:%Y%m%d$.png -closeapp -exit -clear -use material-lighter.nu -$env.config.color_config = (material-lighter) -print $"\e]10;((material-lighter).foreground);((material-lighter).background);((material-lighter).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material-lighter'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material-lighter_$dt:%Y%m%d$.png -closeapp -exit -clear -use material-palenight.nu -$env.config.color_config = (material-palenight) -print $"\e]10;((material-palenight).foreground);((material-palenight).background);((material-palenight).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material-palenight'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material-palenight_$dt:%Y%m%d$.png -closeapp -exit -clear -use material-vivid.nu -$env.config.color_config = (material-vivid) -print $"\e]10;((material-vivid).foreground);((material-vivid).background);((material-vivid).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material-vivid'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material-vivid_$dt:%Y%m%d$.png -closeapp -exit -clear -use material.nu -$env.config.color_config = (material) -print $"\e]10;((material).foreground);((material).background);((material).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'material'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\material_$dt:%Y%m%d$.png -closeapp -exit -clear -use mathias.nu -$env.config.color_config = (mathias) -print $"\e]10;((mathias).foreground);((mathias).background);((mathias).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mathias'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mathias_$dt:%Y%m%d$.png -closeapp -exit -clear -use medallion.nu -$env.config.color_config = (medallion) -print $"\e]10;((medallion).foreground);((medallion).background);((medallion).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'medallion'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\medallion_$dt:%Y%m%d$.png -closeapp -exit -clear -use mellow-purple.nu -$env.config.color_config = (mellow-purple) -print $"\e]10;((mellow-purple).foreground);((mellow-purple).background);((mellow-purple).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mellow-purple'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mellow-purple_$dt:%Y%m%d$.png -closeapp -exit -clear -use mexico-light.nu -$env.config.color_config = (mexico-light) -print $"\e]10;((mexico-light).foreground);((mexico-light).background);((mexico-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mexico-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mexico-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use miramare.nu -$env.config.color_config = (miramare) -print $"\e]10;((miramare).foreground);((miramare).background);((miramare).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'miramare'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\miramare_$dt:%Y%m%d$.png -closeapp -exit -clear -use misterioso.nu -$env.config.color_config = (misterioso) -print $"\e]10;((misterioso).foreground);((misterioso).background);((misterioso).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'misterioso'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\misterioso_$dt:%Y%m%d$.png -closeapp -exit -clear -use miu.nu -$env.config.color_config = (miu) -print $"\e]10;((miu).foreground);((miu).background);((miu).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'miu'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\miu_$dt:%Y%m%d$.png -closeapp -exit -clear -use mocha.nu -$env.config.color_config = (mocha) -print $"\e]10;((mocha).foreground);((mocha).background);((mocha).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mocha'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mocha_$dt:%Y%m%d$.png -closeapp -exit -clear -use molokai.nu -$env.config.color_config = (molokai) -print $"\e]10;((molokai).foreground);((molokai).background);((molokai).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'molokai'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\molokai_$dt:%Y%m%d$.png -closeapp -exit -clear -use mona-lisa.nu -$env.config.color_config = (mona-lisa) -print $"\e]10;((mona-lisa).foreground);((mona-lisa).background);((mona-lisa).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mona-lisa'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mona-lisa_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-amber.nu -$env.config.color_config = (mono-amber) -print $"\e]10;((mono-amber).foreground);((mono-amber).background);((mono-amber).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-amber'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-amber_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-cyan.nu -$env.config.color_config = (mono-cyan) -print $"\e]10;((mono-cyan).foreground);((mono-cyan).background);((mono-cyan).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-cyan'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-cyan_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-green.nu -$env.config.color_config = (mono-green) -print $"\e]10;((mono-green).foreground);((mono-green).background);((mono-green).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-green'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-green_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-red.nu -$env.config.color_config = (mono-red) -print $"\e]10;((mono-red).foreground);((mono-red).background);((mono-red).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-red'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-red_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-white.nu -$env.config.color_config = (mono-white) -print $"\e]10;((mono-white).foreground);((mono-white).background);((mono-white).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-white'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-white_$dt:%Y%m%d$.png -closeapp -exit -clear -use mono-yellow.nu -$env.config.color_config = (mono-yellow) -print $"\e]10;((mono-yellow).foreground);((mono-yellow).background);((mono-yellow).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mono-yellow'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mono-yellow_$dt:%Y%m%d$.png -closeapp -exit -clear -use monokai-dark.nu -$env.config.color_config = (monokai-dark) -print $"\e]10;((monokai-dark).foreground);((monokai-dark).background);((monokai-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'monokai-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\monokai-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use monokai-soda.nu -$env.config.color_config = (monokai-soda) -print $"\e]10;((monokai-soda).foreground);((monokai-soda).background);((monokai-soda).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'monokai-soda'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\monokai-soda_$dt:%Y%m%d$.png -closeapp -exit -clear -use monokai.nu -$env.config.color_config = (monokai) -print $"\e]10;((monokai).foreground);((monokai).background);((monokai).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'monokai'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\monokai_$dt:%Y%m%d$.png -closeapp -exit -clear -use mountaineer-grey.nu -$env.config.color_config = (mountaineer-grey) -print $"\e]10;((mountaineer-grey).foreground);((mountaineer-grey).background);((mountaineer-grey).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mountaineer-grey'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mountaineer-grey_$dt:%Y%m%d$.png -closeapp -exit -clear -use mountaineer.nu -$env.config.color_config = (mountaineer) -print $"\e]10;((mountaineer).foreground);((mountaineer).background);((mountaineer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'mountaineer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\mountaineer_$dt:%Y%m%d$.png -closeapp -exit -clear -use n0tch2k.nu -$env.config.color_config = (n0tch2k) -print $"\e]10;((n0tch2k).foreground);((n0tch2k).background);((n0tch2k).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'n0tch2k'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\n0tch2k_$dt:%Y%m%d$.png -closeapp -exit -clear -use nebula.nu -$env.config.color_config = (nebula) -print $"\e]10;((nebula).foreground);((nebula).background);((nebula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nebula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nebula_$dt:%Y%m%d$.png -closeapp -exit -clear -use neon-night.nu -$env.config.color_config = (neon-night) -print $"\e]10;((neon-night).foreground);((neon-night).background);((neon-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'neon-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\neon-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use neopolitan.nu -$env.config.color_config = (neopolitan) -print $"\e]10;((neopolitan).foreground);((neopolitan).background);((neopolitan).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'neopolitan'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\neopolitan_$dt:%Y%m%d$.png -closeapp -exit -clear -use nep.nu -$env.config.color_config = (nep) -print $"\e]10;((nep).foreground);((nep).background);((nep).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nep'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nep_$dt:%Y%m%d$.png -closeapp -exit -clear -use neutron.nu -$env.config.color_config = (neutron) -print $"\e]10;((neutron).foreground);((neutron).background);((neutron).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'neutron'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\neutron_$dt:%Y%m%d$.png -closeapp -exit -clear -use nightfly.nu -$env.config.color_config = (nightfly) -print $"\e]10;((nightfly).foreground);((nightfly).background);((nightfly).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nightfly'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nightfly_$dt:%Y%m%d$.png -closeapp -exit -clear -use nightlion-v1.nu -$env.config.color_config = (nightlion-v1) -print $"\e]10;((nightlion-v1).foreground);((nightlion-v1).background);((nightlion-v1).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nightlion-v1'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nightlion-v1_$dt:%Y%m%d$.png -closeapp -exit -clear -use nightlion-v2.nu -$env.config.color_config = (nightlion-v2) -print $"\e]10;((nightlion-v2).foreground);((nightlion-v2).background);((nightlion-v2).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nightlion-v2'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nightlion-v2_$dt:%Y%m%d$.png -closeapp -exit -clear -use nighty.nu -$env.config.color_config = (nighty) -print $"\e]10;((nighty).foreground);((nighty).background);((nighty).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nighty'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nighty_$dt:%Y%m%d$.png -closeapp -exit -clear -use nord-alt.nu -$env.config.color_config = (nord-alt) -print $"\e]10;((nord-alt).foreground);((nord-alt).background);((nord-alt).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nord-alt'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nord-alt_$dt:%Y%m%d$.png -closeapp -exit -clear -use nord-light.nu -$env.config.color_config = (nord-light) -print $"\e]10;((nord-light).foreground);((nord-light).background);((nord-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nord-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nord-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use nord.nu -$env.config.color_config = (nord) -print $"\e]10;((nord).foreground);((nord).background);((nord).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nord'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nord_$dt:%Y%m%d$.png -closeapp -exit -clear -use nova.nu -$env.config.color_config = (nova) -print $"\e]10;((nova).foreground);((nova).background);((nova).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nova'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nova_$dt:%Y%m%d$.png -closeapp -exit -clear -use novel.nu -$env.config.color_config = (novel) -print $"\e]10;((novel).foreground);((novel).background);((novel).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'novel'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\novel_$dt:%Y%m%d$.png -closeapp -exit -clear -use nushell-dark.nu -$env.config.color_config = (nushell-dark) -print $"\e]10;((nushell-dark).foreground);((nushell-dark).background);((nushell-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nushell-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nushell-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use nushell-light.nu -$env.config.color_config = (nushell-light) -print $"\e]10;((nushell-light).foreground);((nushell-light).background);((nushell-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'nushell-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\nushell-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use obsidian.nu -$env.config.color_config = (obsidian) -print $"\e]10;((obsidian).foreground);((obsidian).background);((obsidian).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'obsidian'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\obsidian_$dt:%Y%m%d$.png -closeapp -exit -clear -use ocean-dark.nu -$env.config.color_config = (ocean-dark) -print $"\e]10;((ocean-dark).foreground);((ocean-dark).background);((ocean-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ocean-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ocean-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use ocean.nu -$env.config.color_config = (ocean) -print $"\e]10;((ocean).foreground);((ocean).background);((ocean).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ocean'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ocean_$dt:%Y%m%d$.png -closeapp -exit -clear -use oceanic-material.nu -$env.config.color_config = (oceanic-material) -print $"\e]10;((oceanic-material).foreground);((oceanic-material).background);((oceanic-material).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'oceanic-material'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\oceanic-material_$dt:%Y%m%d$.png -closeapp -exit -clear -use oceanic-next.nu -$env.config.color_config = (oceanic-next) -print $"\e]10;((oceanic-next).foreground);((oceanic-next).background);((oceanic-next).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'oceanic-next'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\oceanic-next_$dt:%Y%m%d$.png -closeapp -exit -clear -use oceanicnext.nu -$env.config.color_config = (oceanicnext) -print $"\e]10;((oceanicnext).foreground);((oceanicnext).background);((oceanicnext).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'oceanicnext'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\oceanicnext_$dt:%Y%m%d$.png -closeapp -exit -clear -use ollie.nu -$env.config.color_config = (ollie) -print $"\e]10;((ollie).foreground);((ollie).background);((ollie).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ollie'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ollie_$dt:%Y%m%d$.png -closeapp -exit -clear -use one-dark.nu -$env.config.color_config = (one-dark) -print $"\e]10;((one-dark).foreground);((one-dark).background);((one-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'one-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\one-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use one-half-black.nu -$env.config.color_config = (one-half-black) -print $"\e]10;((one-half-black).foreground);((one-half-black).background);((one-half-black).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'one-half-black'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\one-half-black_$dt:%Y%m%d$.png -closeapp -exit -clear -use one-half-light.nu -$env.config.color_config = (one-half-light) -print $"\e]10;((one-half-light).foreground);((one-half-light).background);((one-half-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'one-half-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\one-half-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use one-light.nu -$env.config.color_config = (one-light) -print $"\e]10;((one-light).foreground);((one-light).background);((one-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'one-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\one-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use onedark.nu -$env.config.color_config = (onedark) -print $"\e]10;((onedark).foreground);((onedark).background);((onedark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'onedark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\onedark_$dt:%Y%m%d$.png -closeapp -exit -clear -use orbital.nu -$env.config.color_config = (orbital) -print $"\e]10;((orbital).foreground);((orbital).background);((orbital).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'orbital'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\orbital_$dt:%Y%m%d$.png -closeapp -exit -clear -use outrun-dark.nu -$env.config.color_config = (outrun-dark) -print $"\e]10;((outrun-dark).foreground);((outrun-dark).background);((outrun-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'outrun-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\outrun-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use pali.nu -$env.config.color_config = (pali) -print $"\e]10;((pali).foreground);((pali).background);((pali).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pali'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pali_$dt:%Y%m%d$.png -closeapp -exit -clear -use palmtree.nu -$env.config.color_config = (palmtree) -print $"\e]10;((palmtree).foreground);((palmtree).background);((palmtree).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'palmtree'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\palmtree_$dt:%Y%m%d$.png -closeapp -exit -clear -use papercolor-dark.nu -$env.config.color_config = (papercolor-dark) -print $"\e]10;((papercolor-dark).foreground);((papercolor-dark).background);((papercolor-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'papercolor-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\papercolor-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use papercolor-light.nu -$env.config.color_config = (papercolor-light) -print $"\e]10;((papercolor-light).foreground);((papercolor-light).background);((papercolor-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'papercolor-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\papercolor-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use paraiso-dark.nu -$env.config.color_config = (paraiso-dark) -print $"\e]10;((paraiso-dark).foreground);((paraiso-dark).background);((paraiso-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'paraiso-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\paraiso-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use paraiso.nu -$env.config.color_config = (paraiso) -print $"\e]10;((paraiso).foreground);((paraiso).background);((paraiso).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'paraiso'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\paraiso_$dt:%Y%m%d$.png -closeapp -exit -clear -use pasque.nu -$env.config.color_config = (pasque) -print $"\e]10;((pasque).foreground);((pasque).background);((pasque).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pasque'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pasque_$dt:%Y%m%d$.png -closeapp -exit -clear -use paul-millr.nu -$env.config.color_config = (paul-millr) -print $"\e]10;((paul-millr).foreground);((paul-millr).background);((paul-millr).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'paul-millr'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\paul-millr_$dt:%Y%m%d$.png -closeapp -exit -clear -use pencil-dark.nu -$env.config.color_config = (pencil-dark) -print $"\e]10;((pencil-dark).foreground);((pencil-dark).background);((pencil-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pencil-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pencil-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use pencil-light.nu -$env.config.color_config = (pencil-light) -print $"\e]10;((pencil-light).foreground);((pencil-light).background);((pencil-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pencil-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pencil-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use peppermint.nu -$env.config.color_config = (peppermint) -print $"\e]10;((peppermint).foreground);((peppermint).background);((peppermint).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'peppermint'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\peppermint_$dt:%Y%m%d$.png -closeapp -exit -clear -use phd.nu -$env.config.color_config = (phd) -print $"\e]10;((phd).foreground);((phd).background);((phd).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'phd'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\phd_$dt:%Y%m%d$.png -closeapp -exit -clear -use piatto-light.nu -$env.config.color_config = (piatto-light) -print $"\e]10;((piatto-light).foreground);((piatto-light).background);((piatto-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'piatto-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\piatto-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use pico.nu -$env.config.color_config = (pico) -print $"\e]10;((pico).foreground);((pico).background);((pico).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pico'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pico_$dt:%Y%m%d$.png -closeapp -exit -clear -use pnevma.nu -$env.config.color_config = (pnevma) -print $"\e]10;((pnevma).foreground);((pnevma).background);((pnevma).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pnevma'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pnevma_$dt:%Y%m%d$.png -closeapp -exit -clear -use pop.nu -$env.config.color_config = (pop) -print $"\e]10;((pop).foreground);((pop).background);((pop).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pop'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pop_$dt:%Y%m%d$.png -closeapp -exit -clear -use porple.nu -$env.config.color_config = (porple) -print $"\e]10;((porple).foreground);((porple).background);((porple).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'porple'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\porple_$dt:%Y%m%d$.png -closeapp -exit -clear -use pro.nu -$env.config.color_config = (pro) -print $"\e]10;((pro).foreground);((pro).background);((pro).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'pro'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\pro_$dt:%Y%m%d$.png -closeapp -exit -clear -use railscasts.nu -$env.config.color_config = (railscasts) -print $"\e]10;((railscasts).foreground);((railscasts).background);((railscasts).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'railscasts'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\railscasts_$dt:%Y%m%d$.png -closeapp -exit -clear -use rebecca.nu -$env.config.color_config = (rebecca) -print $"\e]10;((rebecca).foreground);((rebecca).background);((rebecca).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'rebecca'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\rebecca_$dt:%Y%m%d$.png -closeapp -exit -clear -use red-alert.nu -$env.config.color_config = (red-alert) -print $"\e]10;((red-alert).foreground);((red-alert).background);((red-alert).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'red-alert'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\red-alert_$dt:%Y%m%d$.png -closeapp -exit -clear -use red-sands.nu -$env.config.color_config = (red-sands) -print $"\e]10;((red-sands).foreground);((red-sands).background);((red-sands).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'red-sands'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\red-sands_$dt:%Y%m%d$.png -closeapp -exit -clear -use relaxed-afterglow.nu -$env.config.color_config = (relaxed-afterglow) -print $"\e]10;((relaxed-afterglow).foreground);((relaxed-afterglow).background);((relaxed-afterglow).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'relaxed-afterglow'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\relaxed-afterglow_$dt:%Y%m%d$.png -closeapp -exit -clear -use renault-style-light.nu -$env.config.color_config = (renault-style-light) -print $"\e]10;((renault-style-light).foreground);((renault-style-light).background);((renault-style-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'renault-style-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\renault-style-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use rippedcasts.nu -$env.config.color_config = (rippedcasts) -print $"\e]10;((rippedcasts).foreground);((rippedcasts).background);((rippedcasts).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'rippedcasts'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\rippedcasts_$dt:%Y%m%d$.png -closeapp -exit -clear -use rose-pine-dawn.nu -$env.config.color_config = (rose-pine-dawn) -print $"\e]10;((rose-pine-dawn).foreground);((rose-pine-dawn).background);((rose-pine-dawn).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'rose-pine-dawn'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\rose-pine-dawn_$dt:%Y%m%d$.png -closeapp -exit -clear -use rose-pine-moon.nu -$env.config.color_config = (rose-pine-moon) -print $"\e]10;((rose-pine-moon).foreground);((rose-pine-moon).background);((rose-pine-moon).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'rose-pine-moon'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\rose-pine-moon_$dt:%Y%m%d$.png -closeapp -exit -clear -use rose-pine.nu -$env.config.color_config = (rose-pine) -print $"\e]10;((rose-pine).foreground);((rose-pine).background);((rose-pine).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'rose-pine'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\rose-pine_$dt:%Y%m%d$.png -closeapp -exit -clear -use royal.nu -$env.config.color_config = (royal) -print $"\e]10;((royal).foreground);((royal).background);((royal).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'royal'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\royal_$dt:%Y%m%d$.png -closeapp -exit -clear -use sagelight.nu -$env.config.color_config = (sagelight) -print $"\e]10;((sagelight).foreground);((sagelight).background);((sagelight).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sagelight'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sagelight_$dt:%Y%m%d$.png -closeapp -exit -clear -use sandcastle.nu -$env.config.color_config = (sandcastle) -print $"\e]10;((sandcastle).foreground);((sandcastle).background);((sandcastle).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sandcastle'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sandcastle_$dt:%Y%m%d$.png -closeapp -exit -clear -use sat.nu -$env.config.color_config = (sat) -print $"\e]10;((sat).foreground);((sat).background);((sat).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sat'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sat_$dt:%Y%m%d$.png -closeapp -exit -clear -use sea-shells.nu -$env.config.color_config = (sea-shells) -print $"\e]10;((sea-shells).foreground);((sea-shells).background);((sea-shells).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sea-shells'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sea-shells_$dt:%Y%m%d$.png -closeapp -exit -clear -use seafoam-pastel.nu -$env.config.color_config = (seafoam-pastel) -print $"\e]10;((seafoam-pastel).foreground);((seafoam-pastel).background);((seafoam-pastel).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'seafoam-pastel'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\seafoam-pastel_$dt:%Y%m%d$.png -closeapp -exit -clear -use selenized-black.nu -$env.config.color_config = (selenized-black) -print $"\e]10;((selenized-black).foreground);((selenized-black).background);((selenized-black).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'selenized-black'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\selenized-black_$dt:%Y%m%d$.png -closeapp -exit -clear -use selenized-dark.nu -$env.config.color_config = (selenized-dark) -print $"\e]10;((selenized-dark).foreground);((selenized-dark).background);((selenized-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'selenized-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\selenized-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use selenized-light.nu -$env.config.color_config = (selenized-light) -print $"\e]10;((selenized-light).foreground);((selenized-light).background);((selenized-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'selenized-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\selenized-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use selenized-white.nu -$env.config.color_config = (selenized-white) -print $"\e]10;((selenized-white).foreground);((selenized-white).background);((selenized-white).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'selenized-white'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\selenized-white_$dt:%Y%m%d$.png -closeapp -exit -clear -use seoul256.nu -$env.config.color_config = (seoul256) -print $"\e]10;((seoul256).foreground);((seoul256).background);((seoul256).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'seoul256'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\seoul256_$dt:%Y%m%d$.png -closeapp -exit -clear -use seti-ui.nu -$env.config.color_config = (seti-ui) -print $"\e]10;((seti-ui).foreground);((seti-ui).background);((seti-ui).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'seti-ui'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\seti-ui_$dt:%Y%m%d$.png -closeapp -exit -clear -use seti.nu -$env.config.color_config = (seti) -print $"\e]10;((seti).foreground);((seti).background);((seti).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'seti'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\seti_$dt:%Y%m%d$.png -closeapp -exit -clear -use shaman.nu -$env.config.color_config = (shaman) -print $"\e]10;((shaman).foreground);((shaman).background);((shaman).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'shaman'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\shaman_$dt:%Y%m%d$.png -closeapp -exit -clear -use shapeshifter.nu -$env.config.color_config = (shapeshifter) -print $"\e]10;((shapeshifter).foreground);((shapeshifter).background);((shapeshifter).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'shapeshifter'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\shapeshifter_$dt:%Y%m%d$.png -closeapp -exit -clear -use shel.nu -$env.config.color_config = (shel) -print $"\e]10;((shel).foreground);((shel).background);((shel).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'shel'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\shel_$dt:%Y%m%d$.png -closeapp -exit -clear -use sierra.nu -$env.config.color_config = (sierra) -print $"\e]10;((sierra).foreground);((sierra).background);((sierra).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sierra'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sierra_$dt:%Y%m%d$.png -closeapp -exit -clear -use silk-dark.nu -$env.config.color_config = (silk-dark) -print $"\e]10;((silk-dark).foreground);((silk-dark).background);((silk-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'silk-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\silk-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use silk-light.nu -$env.config.color_config = (silk-light) -print $"\e]10;((silk-light).foreground);((silk-light).background);((silk-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'silk-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\silk-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use slate.nu -$env.config.color_config = (slate) -print $"\e]10;((slate).foreground);((slate).background);((slate).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'slate'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\slate_$dt:%Y%m%d$.png -closeapp -exit -clear -use smyck.nu -$env.config.color_config = (smyck) -print $"\e]10;((smyck).foreground);((smyck).background);((smyck).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'smyck'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\smyck_$dt:%Y%m%d$.png -closeapp -exit -clear -use snazzy.nu -$env.config.color_config = (snazzy) -print $"\e]10;((snazzy).foreground);((snazzy).background);((snazzy).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'snazzy'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\snazzy_$dt:%Y%m%d$.png -closeapp -exit -clear -use snow-dark.nu -$env.config.color_config = (snow-dark) -print $"\e]10;((snow-dark).foreground);((snow-dark).background);((snow-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'snow-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\snow-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use snow-light.nu -$env.config.color_config = (snow-light) -print $"\e]10;((snow-light).foreground);((snow-light).background);((snow-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'snow-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\snow-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use soft-server.nu -$env.config.color_config = (soft-server) -print $"\e]10;((soft-server).foreground);((soft-server).background);((soft-server).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'soft-server'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\soft-server_$dt:%Y%m%d$.png -closeapp -exit -clear -use solar-flare.nu -$env.config.color_config = (solar-flare) -print $"\e]10;((solar-flare).foreground);((solar-flare).background);((solar-flare).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solar-flare'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solar-flare_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarflare-light.nu -$env.config.color_config = (solarflare-light) -print $"\e]10;((solarflare-light).foreground);((solarflare-light).background);((solarflare-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarflare-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarflare-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarflare.nu -$env.config.color_config = (solarflare) -print $"\e]10;((solarflare).foreground);((solarflare).background);((solarflare).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarflare'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarflare_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarized-darcula.nu -$env.config.color_config = (solarized-darcula) -print $"\e]10;((solarized-darcula).foreground);((solarized-darcula).background);((solarized-darcula).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarized-darcula'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarized-darcula_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarized-dark-higher-contrast.nu -$env.config.color_config = (solarized-dark-higher-contrast) -print $"\e]10;((solarized-dark-higher-contrast).foreground);((solarized-dark-higher-contrast).background);((solarized-dark-higher-contrast).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarized-dark-higher-contrast'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarized-dark-higher-contrast_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarized-dark.nu -$env.config.color_config = (solarized-dark) -print $"\e]10;((solarized-dark).foreground);((solarized-dark).background);((solarized-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarized-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarized-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use solarized-light.nu -$env.config.color_config = (solarized-light) -print $"\e]10;((solarized-light).foreground);((solarized-light).background);((solarized-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'solarized-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\solarized-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use source-code-x.nu -$env.config.color_config = (source-code-x) -print $"\e]10;((source-code-x).foreground);((source-code-x).background);((source-code-x).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'source-code-x'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\source-code-x_$dt:%Y%m%d$.png -closeapp -exit -clear -use sourcerer.nu -$env.config.color_config = (sourcerer) -print $"\e]10;((sourcerer).foreground);((sourcerer).background);((sourcerer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sourcerer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sourcerer_$dt:%Y%m%d$.png -closeapp -exit -clear -use sourcerer2.nu -$env.config.color_config = (sourcerer2) -print $"\e]10;((sourcerer2).foreground);((sourcerer2).background);((sourcerer2).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sourcerer2'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sourcerer2_$dt:%Y%m%d$.png -closeapp -exit -clear -use spaceduck.nu -$env.config.color_config = (spaceduck) -print $"\e]10;((spaceduck).foreground);((spaceduck).background);((spaceduck).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spaceduck'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spaceduck_$dt:%Y%m%d$.png -closeapp -exit -clear -use spacedust.nu -$env.config.color_config = (spacedust) -print $"\e]10;((spacedust).foreground);((spacedust).background);((spacedust).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spacedust'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spacedust_$dt:%Y%m%d$.png -closeapp -exit -clear -use spacegray-eighties-dull.nu -$env.config.color_config = (spacegray-eighties-dull) -print $"\e]10;((spacegray-eighties-dull).foreground);((spacegray-eighties-dull).background);((spacegray-eighties-dull).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spacegray-eighties-dull'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spacegray-eighties-dull_$dt:%Y%m%d$.png -closeapp -exit -clear -use spacegray-eighties.nu -$env.config.color_config = (spacegray-eighties) -print $"\e]10;((spacegray-eighties).foreground);((spacegray-eighties).background);((spacegray-eighties).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spacegray-eighties'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spacegray-eighties_$dt:%Y%m%d$.png -closeapp -exit -clear -use spacegray.nu -$env.config.color_config = (spacegray) -print $"\e]10;((spacegray).foreground);((spacegray).background);((spacegray).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spacegray'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spacegray_$dt:%Y%m%d$.png -closeapp -exit -clear -use spacemacs.nu -$env.config.color_config = (spacemacs) -print $"\e]10;((spacemacs).foreground);((spacemacs).background);((spacemacs).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spacemacs'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spacemacs_$dt:%Y%m%d$.png -closeapp -exit -clear -use spiderman.nu -$env.config.color_config = (spiderman) -print $"\e]10;((spiderman).foreground);((spiderman).background);((spiderman).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spiderman'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spiderman_$dt:%Y%m%d$.png -closeapp -exit -clear -use spring.nu -$env.config.color_config = (spring) -print $"\e]10;((spring).foreground);((spring).background);((spring).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'spring'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\spring_$dt:%Y%m%d$.png -closeapp -exit -clear -use square.nu -$env.config.color_config = (square) -print $"\e]10;((square).foreground);((square).background);((square).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'square'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\square_$dt:%Y%m%d$.png -closeapp -exit -clear -use srcery.nu -$env.config.color_config = (srcery) -print $"\e]10;((srcery).foreground);((srcery).background);((srcery).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'srcery'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\srcery_$dt:%Y%m%d$.png -closeapp -exit -clear -use substrata.nu -$env.config.color_config = (substrata) -print $"\e]10;((substrata).foreground);((substrata).background);((substrata).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'substrata'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\substrata_$dt:%Y%m%d$.png -closeapp -exit -clear -use summercamp.nu -$env.config.color_config = (summercamp) -print $"\e]10;((summercamp).foreground);((summercamp).background);((summercamp).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'summercamp'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\summercamp_$dt:%Y%m%d$.png -closeapp -exit -clear -use summerfruit-dark.nu -$env.config.color_config = (summerfruit-dark) -print $"\e]10;((summerfruit-dark).foreground);((summerfruit-dark).background);((summerfruit-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'summerfruit-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\summerfruit-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use summerfruit-light.nu -$env.config.color_config = (summerfruit-light) -print $"\e]10;((summerfruit-light).foreground);((summerfruit-light).background);((summerfruit-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'summerfruit-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\summerfruit-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use sundried.nu -$env.config.color_config = (sundried) -print $"\e]10;((sundried).foreground);((sundried).background);((sundried).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'sundried'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\sundried_$dt:%Y%m%d$.png -closeapp -exit -clear -use symphonic.nu -$env.config.color_config = (symphonic) -print $"\e]10;((symphonic).foreground);((symphonic).background);((symphonic).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'symphonic'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\symphonic_$dt:%Y%m%d$.png -closeapp -exit -clear -use synth-midnight-dark.nu -$env.config.color_config = (synth-midnight-dark) -print $"\e]10;((synth-midnight-dark).foreground);((synth-midnight-dark).background);((synth-midnight-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'synth-midnight-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\synth-midnight-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use synth-midnight-light.nu -$env.config.color_config = (synth-midnight-light) -print $"\e]10;((synth-midnight-light).foreground);((synth-midnight-light).background);((synth-midnight-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'synth-midnight-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\synth-midnight-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use tango-dark.nu -$env.config.color_config = (tango-dark) -print $"\e]10;((tango-dark).foreground);((tango-dark).background);((tango-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tango-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tango-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use tango-light.nu -$env.config.color_config = (tango-light) -print $"\e]10;((tango-light).foreground);((tango-light).background);((tango-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tango-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tango-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use tango.nu -$env.config.color_config = (tango) -print $"\e]10;((tango).foreground);((tango).background);((tango).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tango'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tango_$dt:%Y%m%d$.png -closeapp -exit -clear -use teerb.nu -$env.config.color_config = (teerb) -print $"\e]10;((teerb).foreground);((teerb).background);((teerb).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'teerb'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\teerb_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-autumn.nu -$env.config.color_config = (tempus-autumn) -print $"\e]10;((tempus-autumn).foreground);((tempus-autumn).background);((tempus-autumn).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-autumn'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-autumn_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-classic.nu -$env.config.color_config = (tempus-classic) -print $"\e]10;((tempus-classic).foreground);((tempus-classic).background);((tempus-classic).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-classic'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-classic_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-dawn.nu -$env.config.color_config = (tempus-dawn) -print $"\e]10;((tempus-dawn).foreground);((tempus-dawn).background);((tempus-dawn).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-dawn'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-dawn_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-day.nu -$env.config.color_config = (tempus-day) -print $"\e]10;((tempus-day).foreground);((tempus-day).background);((tempus-day).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-day'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-day_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-dusk.nu -$env.config.color_config = (tempus-dusk) -print $"\e]10;((tempus-dusk).foreground);((tempus-dusk).background);((tempus-dusk).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-dusk'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-dusk_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-fugit.nu -$env.config.color_config = (tempus-fugit) -print $"\e]10;((tempus-fugit).foreground);((tempus-fugit).background);((tempus-fugit).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-fugit'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-fugit_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-future.nu -$env.config.color_config = (tempus-future) -print $"\e]10;((tempus-future).foreground);((tempus-future).background);((tempus-future).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-future'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-future_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-night.nu -$env.config.color_config = (tempus-night) -print $"\e]10;((tempus-night).foreground);((tempus-night).background);((tempus-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-past.nu -$env.config.color_config = (tempus-past) -print $"\e]10;((tempus-past).foreground);((tempus-past).background);((tempus-past).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-past'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-past_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-rift.nu -$env.config.color_config = (tempus-rift) -print $"\e]10;((tempus-rift).foreground);((tempus-rift).background);((tempus-rift).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-rift'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-rift_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-spring.nu -$env.config.color_config = (tempus-spring) -print $"\e]10;((tempus-spring).foreground);((tempus-spring).background);((tempus-spring).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-spring'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-spring_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-summer.nu -$env.config.color_config = (tempus-summer) -print $"\e]10;((tempus-summer).foreground);((tempus-summer).background);((tempus-summer).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-summer'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-summer_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-tempest.nu -$env.config.color_config = (tempus-tempest) -print $"\e]10;((tempus-tempest).foreground);((tempus-tempest).background);((tempus-tempest).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-tempest'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-tempest_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-totus.nu -$env.config.color_config = (tempus-totus) -print $"\e]10;((tempus-totus).foreground);((tempus-totus).background);((tempus-totus).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-totus'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-totus_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-warp.nu -$env.config.color_config = (tempus-warp) -print $"\e]10;((tempus-warp).foreground);((tempus-warp).background);((tempus-warp).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-warp'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-warp_$dt:%Y%m%d$.png -closeapp -exit -clear -use tempus-winter.nu -$env.config.color_config = (tempus-winter) -print $"\e]10;((tempus-winter).foreground);((tempus-winter).background);((tempus-winter).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tempus-winter'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tempus-winter_$dt:%Y%m%d$.png -closeapp -exit -clear -use tender.nu -$env.config.color_config = (tender) -print $"\e]10;((tender).foreground);((tender).background);((tender).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tender'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tender_$dt:%Y%m%d$.png -closeapp -exit -clear -use terminal-basic.nu -$env.config.color_config = (terminal-basic) -print $"\e]10;((terminal-basic).foreground);((terminal-basic).background);((terminal-basic).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'terminal-basic'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\terminal-basic_$dt:%Y%m%d$.png -closeapp -exit -clear -use terminix-dark.nu -$env.config.color_config = (terminix-dark) -print $"\e]10;((terminix-dark).foreground);((terminix-dark).background);((terminix-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'terminix-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\terminix-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use thayer-bright.nu -$env.config.color_config = (thayer-bright) -print $"\e]10;((thayer-bright).foreground);((thayer-bright).background);((thayer-bright).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'thayer-bright'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\thayer-bright_$dt:%Y%m%d$.png -closeapp -exit -clear -use the-hulk.nu -$env.config.color_config = (the-hulk) -print $"\e]10;((the-hulk).foreground);((the-hulk).background);((the-hulk).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'the-hulk'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\the-hulk_$dt:%Y%m%d$.png -closeapp -exit -clear -use tin.nu -$env.config.color_config = (tin) -print $"\e]10;((tin).foreground);((tin).background);((tin).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tin'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tin_$dt:%Y%m%d$.png -closeapp -exit -clear -use tokyo-day.nu -$env.config.color_config = (tokyo-day) -print $"\e]10;((tokyo-day).foreground);((tokyo-day).background);((tokyo-day).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tokyo-day'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tokyo-day_$dt:%Y%m%d$.png -closeapp -exit -clear -use tokyo-night.nu -$env.config.color_config = (tokyo-night) -print $"\e]10;((tokyo-night).foreground);((tokyo-night).background);((tokyo-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tokyo-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tokyo-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use tokyo-storm.nu -$env.config.color_config = (tokyo-storm) -print $"\e]10;((tokyo-storm).foreground);((tokyo-storm).background);((tokyo-storm).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tokyo-storm'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tokyo-storm_$dt:%Y%m%d$.png -closeapp -exit -clear -use tomorrow-night-blue.nu -$env.config.color_config = (tomorrow-night-blue) -print $"\e]10;((tomorrow-night-blue).foreground);((tomorrow-night-blue).background);((tomorrow-night-blue).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tomorrow-night-blue'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tomorrow-night-blue_$dt:%Y%m%d$.png -closeapp -exit -clear -use tomorrow-night-bright.nu -$env.config.color_config = (tomorrow-night-bright) -print $"\e]10;((tomorrow-night-bright).foreground);((tomorrow-night-bright).background);((tomorrow-night-bright).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tomorrow-night-bright'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tomorrow-night-bright_$dt:%Y%m%d$.png -closeapp -exit -clear -use tomorrow-night-eighties.nu -$env.config.color_config = (tomorrow-night-eighties) -print $"\e]10;((tomorrow-night-eighties).foreground);((tomorrow-night-eighties).background);((tomorrow-night-eighties).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tomorrow-night-eighties'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tomorrow-night-eighties_$dt:%Y%m%d$.png -closeapp -exit -clear -use tomorrow-night.nu -$env.config.color_config = (tomorrow-night) -print $"\e]10;((tomorrow-night).foreground);((tomorrow-night).background);((tomorrow-night).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tomorrow-night'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tomorrow-night_$dt:%Y%m%d$.png -closeapp -exit -clear -use tomorrow.nu -$env.config.color_config = (tomorrow) -print $"\e]10;((tomorrow).foreground);((tomorrow).background);((tomorrow).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tomorrow'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tomorrow_$dt:%Y%m%d$.png -closeapp -exit -clear -use toy-chest.nu -$env.config.color_config = (toy-chest) -print $"\e]10;((toy-chest).foreground);((toy-chest).background);((toy-chest).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'toy-chest'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\toy-chest_$dt:%Y%m%d$.png -closeapp -exit -clear -use treehouse.nu -$env.config.color_config = (treehouse) -print $"\e]10;((treehouse).foreground);((treehouse).background);((treehouse).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'treehouse'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\treehouse_$dt:%Y%m%d$.png -closeapp -exit -clear -use tube.nu -$env.config.color_config = (tube) -print $"\e]10;((tube).foreground);((tube).background);((tube).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'tube'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\tube_$dt:%Y%m%d$.png -closeapp -exit -clear -use twilight.nu -$env.config.color_config = (twilight) -print $"\e]10;((twilight).foreground);((twilight).background);((twilight).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'twilight'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\twilight_$dt:%Y%m%d$.png -closeapp -exit -clear -use two-firewatch.nu -$env.config.color_config = (two-firewatch) -print $"\e]10;((two-firewatch).foreground);((two-firewatch).background);((two-firewatch).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'two-firewatch'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\two-firewatch_$dt:%Y%m%d$.png -closeapp -exit -clear -use unikitty-dark.nu -$env.config.color_config = (unikitty-dark) -print $"\e]10;((unikitty-dark).foreground);((unikitty-dark).background);((unikitty-dark).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'unikitty-dark'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\unikitty-dark_$dt:%Y%m%d$.png -closeapp -exit -clear -use unikitty-light.nu -$env.config.color_config = (unikitty-light) -print $"\e]10;((unikitty-light).foreground);((unikitty-light).background);((unikitty-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'unikitty-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\unikitty-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use ura.nu -$env.config.color_config = (ura) -print $"\e]10;((ura).foreground);((ura).background);((ura).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'ura'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\ura_$dt:%Y%m%d$.png -closeapp -exit -clear -use urple.nu -$env.config.color_config = (urple) -print $"\e]10;((urple).foreground);((urple).background);((urple).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'urple'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\urple_$dt:%Y%m%d$.png -closeapp -exit -clear -use vag.nu -$env.config.color_config = (vag) -print $"\e]10;((vag).foreground);((vag).background);((vag).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'vag'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\vag_$dt:%Y%m%d$.png -closeapp -exit -clear -use vaughn.nu -$env.config.color_config = (vaughn) -print $"\e]10;((vaughn).foreground);((vaughn).background);((vaughn).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'vaughn'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\vaughn_$dt:%Y%m%d$.png -closeapp -exit -clear -use vibrant-ink.nu -$env.config.color_config = (vibrant-ink) -print $"\e]10;((vibrant-ink).foreground);((vibrant-ink).background);((vibrant-ink).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'vibrant-ink'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\vibrant-ink_$dt:%Y%m%d$.png -closeapp -exit -clear -use vs-code-dark-plus.nu -$env.config.color_config = (vs-code-dark-plus) -print $"\e]10;((vs-code-dark-plus).foreground);((vs-code-dark-plus).background);((vs-code-dark-plus).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'vs-code-dark-plus'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\vs-code-dark-plus_$dt:%Y%m%d$.png -closeapp -exit -clear -use vulcan.nu -$env.config.color_config = (vulcan) -print $"\e]10;((vulcan).foreground);((vulcan).background);((vulcan).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'vulcan'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\vulcan_$dt:%Y%m%d$.png -closeapp -exit -clear -use warm-neon.nu -$env.config.color_config = (warm-neon) -print $"\e]10;((warm-neon).foreground);((warm-neon).background);((warm-neon).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'warm-neon'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\warm-neon_$dt:%Y%m%d$.png -closeapp -exit -clear -use wez.nu -$env.config.color_config = (wez) -print $"\e]10;((wez).foreground);((wez).background);((wez).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'wez'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\wez_$dt:%Y%m%d$.png -closeapp -exit -clear -use wild-cherry.nu -$env.config.color_config = (wild-cherry) -print $"\e]10;((wild-cherry).foreground);((wild-cherry).background);((wild-cherry).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'wild-cherry'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\wild-cherry_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-10-light.nu -$env.config.color_config = (windows-10-light) -print $"\e]10;((windows-10-light).foreground);((windows-10-light).background);((windows-10-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-10-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-10-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-10.nu -$env.config.color_config = (windows-10) -print $"\e]10;((windows-10).foreground);((windows-10).background);((windows-10).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-10'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-10_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-95-light.nu -$env.config.color_config = (windows-95-light) -print $"\e]10;((windows-95-light).foreground);((windows-95-light).background);((windows-95-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-95-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-95-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-95.nu -$env.config.color_config = (windows-95) -print $"\e]10;((windows-95).foreground);((windows-95).background);((windows-95).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-95'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-95_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-highcontrast-light.nu -$env.config.color_config = (windows-highcontrast-light) -print $"\e]10;((windows-highcontrast-light).foreground);((windows-highcontrast-light).background);((windows-highcontrast-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-highcontrast-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-highcontrast-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-highcontrast.nu -$env.config.color_config = (windows-highcontrast) -print $"\e]10;((windows-highcontrast).foreground);((windows-highcontrast).background);((windows-highcontrast).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-highcontrast'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-highcontrast_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-nt-light.nu -$env.config.color_config = (windows-nt-light) -print $"\e]10;((windows-nt-light).foreground);((windows-nt-light).background);((windows-nt-light).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-nt-light'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-nt-light_$dt:%Y%m%d$.png -closeapp -exit -clear -use windows-nt.nu -$env.config.color_config = (windows-nt) -print $"\e]10;((windows-nt).foreground);((windows-nt).background);((windows-nt).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'windows-nt'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\windows-nt_$dt:%Y%m%d$.png -closeapp -exit -clear -use wombat.nu -$env.config.color_config = (wombat) -print $"\e]10;((wombat).foreground);((wombat).background);((wombat).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'wombat'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\wombat_$dt:%Y%m%d$.png -closeapp -exit -clear -use woodland.nu -$env.config.color_config = (woodland) -print $"\e]10;((woodland).foreground);((woodland).background);((woodland).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'woodland'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\woodland_$dt:%Y%m%d$.png -closeapp -exit -clear -use wryan.nu -$env.config.color_config = (wryan) -print $"\e]10;((wryan).foreground);((wryan).background);((wryan).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'wryan'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\wryan_$dt:%Y%m%d$.png -closeapp -exit -clear -use xcode-dusk.nu -$env.config.color_config = (xcode-dusk) -print $"\e]10;((xcode-dusk).foreground);((xcode-dusk).background);((xcode-dusk).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'xcode-dusk'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\xcode-dusk_$dt:%Y%m%d$.png -closeapp -exit -clear -use yachiyo.nu -$env.config.color_config = (yachiyo) -print $"\e]10;((yachiyo).foreground);((yachiyo).background);((yachiyo).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'yachiyo'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\yachiyo_$dt:%Y%m%d$.png -closeapp -exit -clear -use zenburn.nu -$env.config.color_config = (zenburn) -print $"\e]10;((zenburn).foreground);((zenburn).background);((zenburn).cursor)(char bel)" -source preview-theme.nu -sleep 100ms -print `Theme name: 'zenburn'` -print (preview_theme_small | table -e) -sleep 250ms -c:\apps\MiniCap\MiniCap.exe -captureactivewin -bordershadow -save c:\temp\zenburn_$dt:%Y%m%d$.png -closeapp -exit diff --git a/themes/src/preview-terminal.nu b/themes/src/preview-terminal.nu deleted file mode 100644 index 499b382..0000000 --- a/themes/src/preview-terminal.nu +++ /dev/null @@ -1,33 +0,0 @@ -# Preview what your termnal theme looks like -def 'preview terminal' [] { - def preview [attr: string] { - let color = $in - $"(ansi -e {fg: $color attr: $attr})($color)(ansi reset)" - } - - let colors = [ - [normal rgb]; - - [black '#000000'] - [red '#FF0000'] - [green '#00FF00'] - [yellow '#FFFF00'] - [blue '#0000FF'] - [magenta '#FF00FF'] - [purple '#FF00FF'] - [cyan '#00FFFF'] - [white '#FFFFFF'] - ] - - $colors | each {|color| { - dimmed: ($color.normal | preview d) - normal: ($color.normal | preview n) - bold: ($color.normal | preview b) - - rgb_dimmed: ($color.rgb | preview d) - rgb_normal: ($color.rgb | preview n) - rgb_bold: ($color.rgb | preview b) - }} -} - -preview terminal \ No newline at end of file