From 25f2b2bbe281faa007c97c4b82bbd334e4b4436d Mon Sep 17 00:00:00 2001 From: bitkarrot <73979971+bitkarrot@users.noreply.github.com> Date: Thu, 5 Jun 2025 01:24:47 -0700 Subject: [PATCH 1/2] fix google domain url --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index ef7ee6c..4b72c4c 100644 --- a/script.js +++ b/script.js @@ -781,7 +781,7 @@ function createResourceCard(resource) { // Try multiple favicon sources const faviconSources = [ - `https://www.google.com/s2/favicons?domain=${domain}&sz=64`, + `https://www.google.com/s2/favicons?domain=https://${domain}&sz=64`, `https://${domain}/favicon.ico`, `https://${domain}/favicon.png`, `https://${domain}/apple-touch-icon.png`, From 2cbca8e2573dcb04d8f9f9b2905a7c751b9b3e2d Mon Sep 17 00:00:00 2001 From: bitkarrot <73979971+bitkarrot@users.noreply.github.com> Date: Thu, 5 Jun 2025 01:59:53 -0700 Subject: [PATCH 2/2] some color suggestions --- styles.css | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/styles.css b/styles.css index b727caf..f6732ac 100644 --- a/styles.css +++ b/styles.css @@ -1,25 +1,28 @@ :root { @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"); - --primary-color: #4a314d; - --background-color: #ffffff; + --primary-color: #3a0ca3;; + --background-color: #c8e7ff; --text-color: #1a090d; - --card-background: #a8ba9a; --sidebar-background: #6b6570; --hover-color: #ace894; --text-primary: var(--text-color); - --link-color: var(--primary-color); + --link-color: #f72585; --star-color: #4a314d; + } /* Dark theme variables */ [data-theme="dark"] { - --background-color: #1a090d; - --text-color: #ace894; - --card-background: #4a314d; - --sidebar-background: #6b6570; + --primary-color: #3a0ca3; + --background-color: #10002b; + --text-color: #4cc9f0; + --card-background: #3a0ca3; + --sidebar-background: #000; + --hover-color: #ace894; --text-primary: var(--text-color); - --link-color: #a8ba9a; + --link-color: #f72585; + --star-color: #4a314d; } * {