summaryrefslogtreecommitdiff
path: root/src/caelestia/data
diff options
context:
space:
mode:
authorBatuhan Edgüer <67585935+BestSithInEU@users.noreply.github.com>2025-08-16 19:17:39 +0300
committerGitHub <noreply@github.com>2025-08-17 02:17:39 +1000
commit63e213283008d95832443a717e23cead25f0a7d6 (patch)
treedd716ccd2a954db0a929c5157f8abd23736bcd34 /src/caelestia/data
parentpaths: fix custom path envs (diff)
downloadcaelestia-cli-63e213283008d95832443a717e23cead25f0a7d6.tar.gz
caelestia-cli-63e213283008d95832443a717e23cead25f0a7d6.tar.bz2
caelestia-cli-63e213283008d95832443a717e23cead25f0a7d6.zip
theme: add Warp terminal theme support (#42)
* theme: add Warp terminal theme support Add support for Warp terminal theming with proper template and integration. - Add warp.yaml template with standard theme variables - Implement apply_warp function with correct 'darker'/'lighter' values - Integrate with main theme application pipeline via enableWarp config * warp: improve theme generation and use proper data directory - Use gen_replace with hash=True for consistent color formatting - Remove # symbols from template to avoid double hashes - Replace warp_mode manually after gen_replace instead of adding to colors dict - Use data_dir for XDG-compliant theme location
Diffstat (limited to 'src/caelestia/data')
-rw-r--r--src/caelestia/data/templates/warp.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/caelestia/data/templates/warp.yaml b/src/caelestia/data/templates/warp.yaml
new file mode 100644
index 0000000..36d4c02
--- /dev/null
+++ b/src/caelestia/data/templates/warp.yaml
@@ -0,0 +1,26 @@
+---
+name: 'Caelestia Theme'
+accent: '{{ $primary }}'
+background: '{{ $surface }}'
+foreground: '{{ $onSurface }}'
+details: {{ $warp_mode }}
+cursor: '{{ $secondary }}'
+terminal_colors:
+ normal:
+ black: '{{ $term0 }}'
+ red: '{{ $term1 }}'
+ green: '{{ $term2 }}'
+ yellow: '{{ $term3 }}'
+ blue: '{{ $term4 }}'
+ magenta: '{{ $term5 }}'
+ cyan: '{{ $term6 }}'
+ white: '{{ $term7 }}'
+ bright:
+ black: '{{ $term8 }}'
+ red: '{{ $term9 }}'
+ green: '{{ $term10 }}'
+ yellow: '{{ $term11 }}'
+ blue: '{{ $term12 }}'
+ magenta: '{{ $term13 }}'
+ cyan: '{{ $term14 }}'
+ white: '{{ $term15 }}'