diff --git a/README.md b/README.md index 82a8e36..50c6ca9 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ A dusk-blue base with soft leaf-green accents, amber selections, and crisp blue/ ```bash mkdir -p ~/.config/wezterm/colors/ -git clone https://github.com/fjord-themes/fjord-wezterm.git --depth 1 ~/.config/wezterm/colors/fjord-wezterm +git clone https://git.jshuntley.com/fjord-theme/fjord-wezterm.git --depth 1 ~/.config/wezterm/colors/fjord-wezterm ``` 2. Add to your config (`~/.wezterm.lua`): @@ -60,7 +60,7 @@ The theme includes: ## 🔄 Updates -This theme is automatically generated from [fjord-core](https://github.com/fjord-themes/fjord-core) and deployed on every release. For an overview of all supported platforms and the full color palette, visit the [Fjord theme page](https://github.com/fjord-themes/fjord). +This theme is automatically generated from [fjord-core](https://git.jshuntley.com/fjord-theme/fjord-core) and deployed on every release. For an overview of all supported platforms and the full color palette, visit the [Fjord theme page](https://git.jshuntley.com/fjord-theme). ## ☕ Support My Work If you enjoy the Fjord theme and find it useful, consider supporting my work: @@ -71,4 +71,4 @@ If you enjoy the Fjord theme and find it useful, consider supporting my work: MIT License - see [LICENSE](LICENSE) file for details. ## 🤝 Contributing -For theme suggestions or issues, please open an issue on [fjord-core](https://github.com/fjord-themes/fjord-core). For an overview of the project, visit the [Fjord theme page](https://github.com/fjord-themes/fjord). \ No newline at end of file +For theme suggestions or issues, please open an issue on [fjord-core](https://git.jshuntley.com/fjord-theme/fjord-core). For an overview of the project, visit the [Fjord theme page](https://git.jshuntley.com/fjord-theme). \ No newline at end of file diff --git a/themes/fjord.lua b/themes/fjord.lua index 348bed1..c6f7966 100644 --- a/themes/fjord.lua +++ b/themes/fjord.lua @@ -37,4 +37,41 @@ return { "#A1E9DE", -- bright cyan "#EFFAFF", -- bright white }, + + scrollbar_thumb = "#6C7A86", + + tab_bar = { + background = "#1B2532", + + active_tab = { + bg_color = "#2A3647", + fg_color = "#E8F0F3", + intensity = "Bold", + underline = "None", + italic = false, + strikethrough = false, + }, + + inactive_tab = { + bg_color = "#212128", + fg_color = "#A0ACB4", + }, + + inactive_tab_hover = { + bg_color = "#2A3647", + fg_color = "#E8F0F3", + italic = true, + }, + + new_tab = { + bg_color = "#1B2532", + fg_color = "#6C7A86", + }, + + new_tab_hover = { + bg_color = "#2A3647", + fg_color = "#E8F0F3", + italic = true, + }, + }, }