From 60fb17077441a86ff6fac7ab1eb14c2b28e0e942 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Sat, 20 Mar 2021 20:50:43 -0400 Subject: [PATCH] Created User Contributed CSS Themes (markdown) --- User-Contributed-CSS-Themes.md | 79 ++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 User-Contributed-CSS-Themes.md diff --git a/User-Contributed-CSS-Themes.md b/User-Contributed-CSS-Themes.md new file mode 100644 index 0000000..cc46f6d --- /dev/null +++ b/User-Contributed-CSS-Themes.md @@ -0,0 +1,79 @@ +*If you have an idea for a theme, open a new Issue with the theme in the issue description, and I'll add it to the wiki* + +## Templates +### Format +```css + /* LIGHT THEME COLORS */ + --whoogle-background: #______; + --whoogle-accent: #______; + --whoogle-text: #______; + --whoogle-contrast-text: #______; + --whoogle-secondary-text: #______; + --whoogle-result-bg: #______; + --whoogle-result-title: #______; + --whoogle-result-url: #______; + --whoogle-result-visited: #______; + + /* DARK THEME COLORS */ + --whoogle-dark-background: #______; + --whoogle-dark-accent: #______; + --whoogle-dark-text: #______; + --whoogle-dark-contrast-text: #______; + --whoogle-dark-secondary-text: #______; + --whoogle-dark-result-bg: #______; + --whoogle-dark-result-title: #______; + --whoogle-dark-result-url: #______; + --whoogle-dark-result-visited: #______; +``` + +## Themes + +### Nord +```css + /* LIGHT THEME COLORS */ + --whoogle-background: #d8dee9; + --whoogle-accent: #2e3440; + --whoogle-text: #3B4252; + --whoogle-contrast-text: #eceff4; + --whoogle-secondary-text: #70757a; + --whoogle-result-bg: #fff; + --whoogle-result-title: #4c566a; + --whoogle-result-url: #81a1c1; + --whoogle-result-visited: #a3be8c; + + /* DARK THEME COLORS */ + --whoogle-dark-background: #292e39; + --whoogle-dark-accent: #d8dee9; + --whoogle-dark-text: #eceff4; + --whoogle-dark-contrast-text: #2e3440; + --whoogle-dark-secondary-text: #f9fafb; + --whoogle-dark-result-bg: #4c566a; + --whoogle-dark-result-title: #88c0d0; + --whoogle-dark-result-url: #eceff4; + --whoogle-dark-result-visited: #a3be8c; +``` + +### Solarized +```css + /* LIGHT THEME COLORS */ + --whoogle-background: #eee8d5; + --whoogle-accent: #002b36; + --whoogle-text: #002b36; + --whoogle-contrast-text: #eee8d5; + --whoogle-secondary-text: #3b4252; + --whoogle-result-bg: #fff; + --whoogle-result-title: #268bd2; + --whoogle-result-url: #5f8700; + --whoogle-result-visited: #2aa198; + + /* DARK THEME COLORS */ + --whoogle-dark-background: #002b36; + --whoogle-dark-accent: #eee8d5; + --whoogle-dark-text: #eee8d5; + --whoogle-dark-contrast-text: #002b36; + --whoogle-dark-secondary-text: #eee8d5; + --whoogle-dark-result-bg: #073642; + --whoogle-dark-result-title: #3aa6f2; + --whoogle-dark-result-url: #38d5c9; + --whoogle-dark-result-visited: #2aa198; +``` \ No newline at end of file