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 @@ -592,7 +592,7 @@ use std/config light-theme # add this line to load the theme into scope

$env.config = {
# ...
color_config: (light_theme) # if you want a light theme, replace `$dark_theme` to `$light_theme`
color_config: (light-theme) # after using dark-theme or light-theme from std, you can change this with `(dark-theme)` in place of `(light-theme)`.
# ...
}
```
Expand All @@ -605,7 +605,7 @@ use std/config dark-theme

$env.config = {
# ...
color_config: (dark_theme)
color_config: (dark-theme)
# ...
}
```
Expand Down