Skip to content

Commit

Permalink
✨ Add more colorschemes
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorBeeston committed Aug 12, 2024
1 parent a90c558 commit 8aca94d
Show file tree
Hide file tree
Showing 7 changed files with 120 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
**Never settle for images outside your colorscheme again!**
Now 🔥B l a z i n g F a s t🔥 thanks to 🦀Rust and 🖥️WGSL

![demo](https://github.com/user-attachments/assets/29cf09a4-df00-4873-a7d8-a0c87a7ed87b)

## Install

![AUR Version](https://img.shields.io/aur/version/image-colorizer)
Expand Down
26 changes: 26 additions & 0 deletions colorschemes/catppuccin-frappe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#f2d5cf
#eebebe
#f4b8e4
#ca9ee6
#e78284
#ea999c
#ef9f76
#e5c890
#a6d189
#81c8be
#99d1db
#85c1dc
#8caaee
#babbf1
#c6d0f5
#b5bfe2
#a5adce
#949cbb
#838ba7
#737994
#626880
#51576d
#414559
#303446
#292c3c
#232634
26 changes: 26 additions & 0 deletions colorschemes/catppuccin-latte.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#dc8a78
#dd7878
#ea76cb
#8839ef
#d20f39
#e64553
#fe640b
#df8e1d
#40a02b
#179299
#04a5e5
#209fb5
#1e66f5
#7287fd
#4c4f69
#5c5f77
#6c6f85
#7c7f93
#8c8fa1
#9ca0b0
#acb0be
#bcc0cc
#ccd0da
#eff1f5
#e6e9ef
#dce0e8
26 changes: 26 additions & 0 deletions colorschemes/catppuccin-macchiato.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#f4dbd6
#f0c6c6
#f5bde6
#c6a0f6
#ed8796
#ee99a0
#f5a97f
#eed49f
#a6da95
#8bd5ca
#91d7e3
#7dc4e4
#8aadf4
#b7bdf8
#cad3f5
#b8c0e0
#a5adcb
#939ab7
#8087a2
#6e738d
#5b6078
#494d64
#363a4f
#24273a
#1e2030
#181926
26 changes: 26 additions & 0 deletions colorschemes/catppuccin-mocha.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#f5e0dc
#f2cdcd
#f5c2e7
#cba6f7
#f38ba8
#eba0ac
#fab387
#f9e2af
#a6e3a1
#94e2d5
#89dceb
#74c7ec
#89b4fa
#b4befe
#cdd6f4
#bac2de
#a6adc8
#9399b2
#7f849c
#6c7086
#585b70
#45475a
#313244
#1e1e2e
#181825
#11111b
12 changes: 12 additions & 0 deletions colorschemes/tomorrow-night.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#1d1f21
#282a2e
#373b41
#c5c8c6
#969896
#cc6666
#de935f
#f0c674
#b5bd68
#8abeb7
#81a2be
#b294bb
5 changes: 2 additions & 3 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,12 @@ pub async fn init() -> Result<Arc<AppConfig>, AppError> {
let input_paths: Vec<&str> = matches.values_of("Image Paths").unwrap().collect();
let output_dir = matches.value_of("output").map(PathBuf::from);

let input_output_pairs =
generate_input_output_pairs(&input_paths, output_dir, &config.colorscheme)?;

let colorscheme = matches
.value_of("Colorscheme")
.unwrap_or(&config.colorscheme);

let input_output_pairs = generate_input_output_pairs(&input_paths, output_dir, &colorscheme)?;

let blend_factor = matches
.value_of("Blend Factor")
.unwrap_or(&config.blend_factor);
Expand Down

0 comments on commit 8aca94d

Please sign in to comment.