Created User Contributed CSS Themes (markdown)

Ben Busby 2021-03-20 20:50:43 -04:00
parent 2a77b06ecf
commit 60fb170774

@ -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;
```