Skip to content

Commit

Permalink
- Adjust dark mode colors to be accessible
Browse files Browse the repository at this point in the history
- Remove host_permissions from manifest
  • Loading branch information
mguidetti committed Sep 25, 2022
1 parent 4502df2 commit 1a5b2d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
5 changes: 1 addition & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -11,9 +11,6 @@
"chrome_url_overrides": {
"newtab": "index.html"
},
"host_permissions": [
"https://thecreativeindependent.com/api/*"
],
"content_scripts": [
{
"matches": [
Expand Down
8 changes: 2 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 1a5b2d3

Please sign in to comment.