Color Schemes (#142)

* WIP: Color Schemes

* Import/export using color_schemes config

* Finish color scheme implementation

* Add color scheme rename
This commit is contained in:
Jeremy Soller 2024-02-22 09:55:46 -07:00 committed by GitHub
parent 01052fae0b
commit 89e1dcb83a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 2630 additions and 861 deletions

View file

@ -9,10 +9,13 @@ rust-version = "1.71"
[dependencies]
alacritty_terminal = "0.20"
env_logger = "0.10"
lazy_static = "1"
hex_color = { version = "3", features = ["serde"] }
indexmap = "2"
lazy_static = "1"
lexical-sort = "0.3.1"
log = "0.4"
palette = { version = "0.7", features = ["serde"] }
ron = "0.8"
serde = { version = "1", features = ["serde_derive"] }
shlex = "1"
tokio = { version = "1", features = ["sync"] }
@ -21,11 +24,10 @@ i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester
i18n-embed-fl = "0.6"
rust-embed = "6"
paste = "1.0"
palette = "0.7"
[dependencies.smol_str]
version = "0.2.1"
features = ["serde"]
[dependencies.cosmic-files]
git = "https://github.com/pop-os/cosmic-files"
default-features = false
[dependencies.cosmic-text]
git = "https://github.com/pop-os/cosmic-text.git"
@ -34,11 +36,15 @@ features = ["shape-run-cache"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["tokio", "winit"]
features = ["multi-window", "tokio", "winit"]
[dependencies.smol_str]
version = "0.2.1"
features = ["serde"]
[features]
default = ["wgpu"]
wgpu = ["libcosmic/wgpu"]
wgpu = ["libcosmic/wgpu", "cosmic-files/wgpu"]
[patch.crates-io]
# https://github.com/rust-lang/libc/pull/3512