From 1a5b2d3cfdf0fd98bb1e495cab3225dcc9ad4202 Mon Sep 17 00:00:00 2001 From: Michael Guidetti Date: Sun, 25 Sep 2022 14:15:26 -0400 Subject: [PATCH] - Adjust dark mode colors to be accessible - Remove host_permissions from manifest --- manifest.json | 5 +---- style.css | 8 ++------ 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/manifest.json b/manifest.json index 1919cf3..526a41a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "The Creative Independent’s Extension", - "version": "2.0.1", + "version": "2.0.2", "description": "Displays a quote from The Creative Independent on your new tab.", "icons": { "16": "./icons/tci-chrome-16.png", @@ -11,9 +11,6 @@ "chrome_url_overrides": { "newtab": "index.html" }, - "host_permissions": [ - "https://thecreativeindependent.com/api/*" - ], "content_scripts": [ { "matches": [ diff --git a/style.css b/style.css index 5800884..20f2bd4 100644 --- a/style.css +++ b/style.css @@ -78,14 +78,10 @@ a#quote__article-title:hover { @media (prefers-color-scheme: dark) { body { background-color: #000000; - color: #4e4e4e; + color: #cdcdcda6; } #spiral { - fill: #4e4e4e; - } - - #quote__text { - color: #cdcdcda6; + fill: #cdcdcda6; } } \ No newline at end of file