diff --git a/src/App.svelte b/src/App.svelte
index ac79152..b5d2534 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -1,7 +1,5 @@
-
-
-
+
diff --git a/src/components/Header/Header.svelte b/src/components/Header/Header.svelte
new file mode 100644
index 0000000..8059907
--- /dev/null
+++ b/src/components/Header/Header.svelte
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Layout/Layout.svelte b/src/components/Layout/Layout.svelte
new file mode 100644
index 0000000..af876db
--- /dev/null
+++ b/src/components/Layout/Layout.svelte
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/styles/main.css b/src/styles/main.css
index 078fadd..1bbfd84 100644
--- a/src/styles/main.css
+++ b/src/styles/main.css
@@ -9,3 +9,13 @@
normalize includes light and dark vars for adaptive theming
*/
@import url('open-props/normalize');
+
+:root {
+ --accent-color: var(--gray-12);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --accent-color: var(--gray-3);
+ }
+}