summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-03-24 11:12:00 +0100
committerpml68 <contact@pml68.dev>2025-04-15 23:46:01 +0200
commit3f811ebef76e0b9ad937be34f70515fe626c21a3 (patch)
tree9f6901c085af123a5369eeabf3757521dc554bcb /assets
parentMerge pull request #14 from pml68/dependabot/cargo/windows_exe_info-0.5.1 (diff)
downloadiced-builder-3f811ebef76e0b9ad937be34f70515fe626c21a3.tar.gz
feat: add custom theme struct with dark and light variants
Diffstat (limited to '')
-rw-r--r--assets/themes/dark.toml46
-rw-r--r--assets/themes/light.toml46
2 files changed, 92 insertions, 0 deletions
diff --git a/assets/themes/dark.toml b/assets/themes/dark.toml
new file mode 100644
index 0000000..a3bde68
--- /dev/null
+++ b/assets/themes/dark.toml
@@ -0,0 +1,46 @@
+name = "Dark"
+
+[primary]
+primary = "#6200ee"
+on_primary = "#ffffff"
+primary_container = "#3700b3"
+on_primary_container = "#ffffff"
+
+[secondary]
+secondary = "#03dac6"
+on_secondary = "#ffffff"
+secondary_container = "#018786"
+on_secondary_container = "#ffffff"
+
+[tertiary]
+tertiary = "#bb86fc"
+on_tertiary = "#000000"
+tertiary_container = "#6200ee"
+on_tertiary_container = "#000000"
+
+[error]
+error = "#b00020"
+on_error = "#ffffff"
+error_container = "#cf6679"
+on_error_container = "#000000"
+
+[surface]
+surface = "#121212"
+on_surface = "#ffffff"
+on_surface_variant = "#b0b0b0"
+
+[surface.surface_container]
+lowest = "#1e1e2e"
+low = "#333333"
+base = "#444444"
+high = "#555555"
+highest = "#666666"
+
+[inverse]
+inverse_surface = "#212121"
+inverse_on_surface = "#ffffff"
+inverse_primary = "#bb86fc"
+
+[outline]
+outline = "#737373"
+outline_variant = "#aaaaaa"
diff --git a/assets/themes/light.toml b/assets/themes/light.toml
new file mode 100644
index 0000000..4852b8b
--- /dev/null
+++ b/assets/themes/light.toml
@@ -0,0 +1,46 @@
+name = "Dark"
+
+[primary]
+primary = "#6200ee"
+on_primary = "#ffffff"
+primary_container = "#e1bee7"
+on_primary_container = "#000000"
+
+[secondary]
+secondary = "#03dac6"
+on_secondary = "#ffffff"
+secondary_container = "#018786"
+on_secondary_container = "#ffffff"
+
+[tertiary]
+tertiary = "#bb86fc"
+on_tertiary = "#000000"
+tertiary_container = "#6200ee"
+on_tertiary_container = "#000000"
+
+[error]
+error = "#b00020"
+on_error = "#ffffff"
+error_container = "#cf6679"
+on_error_container = "#000000"
+
+[surface]
+surface = "#ffffff"
+on_surface = "#000000"
+on_surface_variant = "#757575"
+
+[surface.surface_container]
+lowest = "#fafafa"
+low = "#eeeeee"
+base = "#dddddd"
+high = "#cccccc"
+highest = "#bbbbbb"
+
+[inverse]
+inverse_surface = "#121212"
+inverse_on_surface = "#ffffff"
+inverse_primary = "#bb86fc"
+
+[outline]
+outline = "#757575"
+outline_variant = "#b0b0b0"