Updated User Contributed CSS Themes (markdown)

Ben Busby 2024-09-30 11:53:07 -06:00
parent eadbfc76a2
commit 148405eff3

@ -511,4 +511,36 @@ a:link h3 div {
}
```
### ChatGPT Theme (by @bbf6 -- [screenshots](https://github.com/benbusby/whoogle-search/issues/1148))
### ChatGPT Theme (by @bbf6 -- [screenshots](https://github.com/benbusby/whoogle-search/issues/1148))
```
:root {
/* LIGHT THEME COLORS */
--whoogle-logo: #10a37f;
--whoogle-page-bg: #ffffff;
--whoogle-element-bg: #f0f0f0;
--whoogle-text: #0d0d0d;
--whoogle-contrast-text: #10a37f;
--whoogle-secondary-text: #666666;
--whoogle-result-bg: #f0f0f0;
--whoogle-result-title: #10a37f;
--whoogle-result-url: #10a37f;
--whoogle-result-visited: #1a7f64;
/* DARK THEME COLORS */
--whoogle-dark-logo: #10a37f;
--whoogle-dark-page-bg: #171717;
--whoogle-dark-element-bg: #2f2f2f;
--whoogle-dark-text: #ffffff;
--whoogle-dark-contrast-text: #10a37f;
--whoogle-dark-secondary-text: #f0f0f0;
--whoogle-dark-result-bg: #2f2f2f;
--whoogle-dark-result-title: #10a37f;
--whoogle-dark-result-url: #10a37f;
--whoogle-dark-result-visited: #1a7f64;
}
#whoogle-w,#whoogle-h,#whoogle-o-1,#whoogle-o-2,#whoogle-g,#whoogle-l,#whoogle-e {
fill: #10a37f;
}
```