27 lines
825 B
CSS
27 lines
825 B
CSS
/* Colors */
|
|
:root {
|
|
/* LIGHT THEME COLORS */
|
|
--whoogle-logo: #685e79;
|
|
--whoogle-page-bg: #ffffff;
|
|
--whoogle-element-bg: #685e79;
|
|
--whoogle-text: #000000;
|
|
--whoogle-contrast-text: #ffffff;
|
|
--whoogle-secondary-text: #70757a;
|
|
--whoogle-result-bg: #ffffff;
|
|
--whoogle-result-title: #1967d2;
|
|
--whoogle-result-url: #0d652d;
|
|
--whoogle-result-visited: #4b11a8;
|
|
|
|
/* DARK THEME COLORS */
|
|
--whoogle-dark-logo: #888888;
|
|
--whoogle-dark-page-bg: #080808;
|
|
--whoogle-dark-element-bg: #111111;
|
|
--whoogle-dark-text: #dddddd;
|
|
--whoogle-dark-contrast-text: #aaaaaa;
|
|
--whoogle-dark-secondary-text: #8a8b8c;
|
|
--whoogle-dark-result-bg: #111111;
|
|
--whoogle-dark-result-title: #dddddd;
|
|
--whoogle-dark-result-url: #eceff4;
|
|
--whoogle-dark-result-visited: #959595;
|
|
}
|