diff --git a/packages/newtab/newtab.html b/packages/newtab/newtab.html
index 9bb8f07..8b54b91 100644
--- a/packages/newtab/newtab.html
+++ b/packages/newtab/newtab.html
@@ -61,6 +61,14 @@
18px
+
+
+
+
+
diff --git a/packages/sidebar/panel.html b/packages/sidebar/panel.html
index 2e948de..38cfa81 100644
--- a/packages/sidebar/panel.html
+++ b/packages/sidebar/panel.html
@@ -61,6 +61,14 @@
18px
+
+
+
+
+
diff --git a/shared/script.js b/shared/script.js
index 818ea18..abd2d34 100644
--- a/shared/script.js
+++ b/shared/script.js
@@ -6,6 +6,7 @@ const els = {
menu: document.getElementById("settings-menu"),
slider: document.getElementById("font-slider"),
fontDisplay: document.getElementById("font-display"),
+ fontFamily: document.getElementById("font-family"),
words: document.getElementById("word-count"),
status: document.getElementById("save-status"),
};
@@ -110,6 +111,11 @@ const updateFontSize = (val) => {
localStore.set("fontsize", size);
};
+const updateFontFamily = (val) => {
+ els.html.style.setProperty("--font-body", val);
+ localStore.set("fontfamily", val);
+};
+
// Menu Listeners
els.toggleSettings.addEventListener("click", toggleMenu);
@@ -117,6 +123,10 @@ els.slider.addEventListener("input", (e) => {
updateFontSize(e.target.value);
});
+els.fontFamily.addEventListener("change", (e) => {
+ updateFontFamily(e.target.value);
+});
+
// Close menu when clicking outside
document.addEventListener("click", (e) => {
if (
@@ -235,6 +245,13 @@ if (storedFontSize) {
updateFontSize(val);
}
+// Init Font Family
+const storedFontFamily = localStore.get("fontfamily");
+if (storedFontFamily) {
+ els.fontFamily.value = storedFontFamily;
+ updateFontFamily(storedFontFamily);
+}
+
els.note.addEventListener("input", (e) => {
updateStats(e.target.value);
save(e.target.value);
diff --git a/shared/styles.css b/shared/styles.css
index 7adf9b6..564ecf5 100644
--- a/shared/styles.css
+++ b/shared/styles.css
@@ -190,3 +190,20 @@ textarea:focus {
cursor: pointer;
accent-color: var(--fg);
}
+
+#font-family {
+ width: 100%;
+ padding: 0.25rem 0.5rem;
+ background: var(--bg);
+ color: var(--fg);
+ border: 1px solid var(--border);
+ border-radius: 4px;
+ cursor: pointer;
+ font-family: var(--font-ui);
+ font-size: 0.85rem;
+}
+
+#font-family:focus {
+ outline: none;
+ border-color: var(--subtle);
+}