summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorPolesznyák Márk László <116908301+pml68@users.noreply.github.com>2025-01-11 23:13:07 +0100
committerGitHub <noreply@github.com>2025-01-11 23:13:07 +0100
commit103699beeb8bdce38bc5803cbe038e74cbc20e40 (patch)
treeb79e13b3decc778cc7c66af7187c647ae0a21a52 /assets
parentMerge pull request #4 from pml68/feat/playground (diff)
parentrefactor: remove iced_drop & workspace (diff)
downloadiced-builder-103699beeb8bdce38bc5803cbe038e74cbc20e40.tar.gz
Merge pull request #5 from pml68/feat/config
Config done
Diffstat (limited to 'assets')
-rw-r--r--assets/config.toml1
-rw-r--r--assets/themes/Rose Pine.toml33
-rw-r--r--assets/windows/iced_builder.manifest8
-rw-r--r--assets/windows/iced_builder.rc3
4 files changed, 45 insertions, 0 deletions
diff --git a/assets/config.toml b/assets/config.toml
new file mode 100644
index 0000000..8ef1bb3
--- /dev/null
+++ b/assets/config.toml
@@ -0,0 +1 @@
+theme = "Rose Pine"
diff --git a/assets/themes/Rose Pine.toml b/assets/themes/Rose Pine.toml
new file mode 100644
index 0000000..df7342b
--- /dev/null
+++ b/assets/themes/Rose Pine.toml
@@ -0,0 +1,33 @@
+is_dark = true
+
+[palette]
+background = "#26233a"
+text = "#e0def4"
+primary = "#9ccfd8"
+success = "#f6c177"
+danger = "#eb6f92"
+
+[background]
+base = { color = "#191724", text = "#e0def4" }
+weak = { color = "#1f1d2e", text = "#e0def4" }
+strong = { color = "#26233a", text = "#f4ebd3" }
+
+[primary]
+base = { color = "#eb6f92", text = "#000000" }
+weak = { color = "#f6c177", text = "#000000" }
+strong = { color = "#ebbcba", text = "#000000" }
+
+[secondary]
+base = { color = "#31748f", text = "#ffffff" }
+weak = { color = "#9ccfd8", text = "#000000" }
+strong = { color = "#c4a7e7", text = "#000000" }
+
+[success]
+base = { color = "#9ccfd8", text = "#000000" }
+weak = { color = "#6e6a86", text = "#ffffff" }
+strong = { color = "#908caa", text = "#000000" }
+
+[danger]
+base = { color = "#eb6f92", text = "#ffffff" }
+weak = { color = "#f6c177", text = "#ffffff" }
+strong = { color = "#524f67", text = "#ffffff" }
diff --git a/assets/windows/iced_builder.manifest b/assets/windows/iced_builder.manifest
new file mode 100644
index 0000000..82039bf
--- /dev/null
+++ b/assets/windows/iced_builder.manifest
@@ -0,0 +1,8 @@
+<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
+ <asmv3:application>
+ <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
+ <dpiAwareness>PerMonitorV2, unaware</dpiAwareness>
+ </asmv3:windowsSettings>
+ </asmv3:application>
+</assembly>
diff --git a/assets/windows/iced_builder.rc b/assets/windows/iced_builder.rc
new file mode 100644
index 0000000..7255b65
--- /dev/null
+++ b/assets/windows/iced_builder.rc
@@ -0,0 +1,3 @@
+#define RT_MANIFEST 24
+
+1 RT_MANIFEST "iced_builder.manifest"