summaryrefslogtreecommitdiff
path: root/assets/themes
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-03-30 20:16:48 +0200
committerpml68 <contact@pml68.dev>2025-04-15 23:46:01 +0200
commitbbc151e82b86bf2d7114f0ea05cde7e8858ba610 (patch)
tree0a84e9d2d251c475bbdfe646b0855f965bb718b0 /assets/themes
parentfeat: add custom theme struct with dark and light variants (diff)
downloadiced-builder-bbc151e82b86bf2d7114f0ea05cde7e8858ba610.tar.gz
feat: add shadow color, impl `button::Catalog` and `text::Catalog`
Diffstat (limited to '')
-rw-r--r--assets/themes/dark.toml16
-rw-r--r--assets/themes/light.toml16
2 files changed, 18 insertions, 14 deletions
diff --git a/assets/themes/dark.toml b/assets/themes/dark.toml
index a3bde68..3c02ce8 100644
--- a/assets/themes/dark.toml
+++ b/assets/themes/dark.toml
@@ -1,31 +1,33 @@
name = "Dark"
+shadow = "#000000"
+
[primary]
-primary = "#6200ee"
+color = "#6200ee"
on_primary = "#ffffff"
primary_container = "#3700b3"
on_primary_container = "#ffffff"
[secondary]
-secondary = "#03dac6"
+color = "#03dac6"
on_secondary = "#ffffff"
secondary_container = "#018786"
on_secondary_container = "#ffffff"
[tertiary]
-tertiary = "#bb86fc"
+color = "#bb86fc"
on_tertiary = "#000000"
tertiary_container = "#6200ee"
on_tertiary_container = "#000000"
[error]
-error = "#b00020"
+color = "#b00020"
on_error = "#ffffff"
error_container = "#cf6679"
on_error_container = "#000000"
[surface]
-surface = "#121212"
+color = "#121212"
on_surface = "#ffffff"
on_surface_variant = "#b0b0b0"
@@ -42,5 +44,5 @@ inverse_on_surface = "#ffffff"
inverse_primary = "#bb86fc"
[outline]
-outline = "#737373"
-outline_variant = "#aaaaaa"
+color = "#737373"
+variant = "#aaaaaa"
diff --git a/assets/themes/light.toml b/assets/themes/light.toml
index 4852b8b..2842c82 100644
--- a/assets/themes/light.toml
+++ b/assets/themes/light.toml
@@ -1,31 +1,33 @@
name = "Dark"
+shadow = "#000000"
+
[primary]
-primary = "#6200ee"
+color = "#6200ee"
on_primary = "#ffffff"
primary_container = "#e1bee7"
on_primary_container = "#000000"
[secondary]
-secondary = "#03dac6"
+color = "#03dac6"
on_secondary = "#ffffff"
secondary_container = "#018786"
on_secondary_container = "#ffffff"
[tertiary]
-tertiary = "#bb86fc"
+color = "#bb86fc"
on_tertiary = "#000000"
tertiary_container = "#6200ee"
on_tertiary_container = "#000000"
[error]
-error = "#b00020"
+color = "#b00020"
on_error = "#ffffff"
error_container = "#cf6679"
on_error_container = "#000000"
[surface]
-surface = "#ffffff"
+color = "#ffffff"
on_surface = "#000000"
on_surface_variant = "#757575"
@@ -42,5 +44,5 @@ inverse_on_surface = "#ffffff"
inverse_primary = "#bb86fc"
[outline]
-outline = "#757575"
-outline_variant = "#b0b0b0"
+color = "#757575"
+variant = "#b0b0b0"