forked from redlib-org/redlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use better accent colour + add libreddit styles (redlib-org#281)
* update favicon with new logo * only have 32x32 .ico file * use #d74253 as new accent colour + add old libreddit styles + bolden accented buttons * fix unrenamed libreddit themes
- Loading branch information
Showing
12 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* Libreddit black theme setting */ | ||
.libredditBlack { | ||
--accent: #009a9a; | ||
--green: #00a229; | ||
--text: white; | ||
--foreground: #0f0f0f; | ||
--background: black; | ||
--outside: black; | ||
--post: black; | ||
--panel-border: 2px solid #0f0f0f; | ||
--highlighted: #0f0f0f; | ||
--visited: #aaa; | ||
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* Libreddit dark theme setting */ | ||
.libredditDark{ | ||
--accent: aqua; | ||
--green: #5cff85; | ||
--text: white; | ||
--foreground: #222; | ||
--background: #0f0f0f; | ||
--outside: #1f1f1f; | ||
--post: #161616; | ||
--panel-border: 1px solid #333; | ||
--highlighted: #333; | ||
--visited: #aaa; | ||
--shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* Libreddit light theme setting */ | ||
.libredditLight { | ||
--accent: #009a9a; | ||
--green: #00a229; | ||
--text: black; | ||
--foreground: #f5f5f5; | ||
--background: #ddd; | ||
--outside: #ececec; | ||
--post: #eee; | ||
--panel-border: 1px solid #ccc; | ||
--highlighted: white; | ||
--visited: #555; | ||
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
html:has(> .libredditLight) { | ||
/* Hint color theme to browser for scrollbar */ | ||
color-scheme: light; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters