Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/coloring_and_theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ If you are working on a light background terminal, you can apply the light theme

```nu
# in $nu.config-path
use config light-theme # add this line to load the theme into scope
use std/config light-theme # add this line to load the theme into scope

$env.config = {
# ...
Expand All @@ -601,7 +601,7 @@ You can also load the dark theme.

```nu
# in $nu.config-path
use config dark-theme
use std/config dark-theme

$env.config = {
# ...
Expand Down