25 lines
733 B
CSS
25 lines
733 B
CSS
/* Colors */
|
|
:root {
|
|
/* LIGHT THEME COLORS */
|
|
--whoogle-background: #fff;
|
|
--whoogle-accent: #685e79;
|
|
--whoogle-text: #000;
|
|
--whoogle-contrast-text: #fff;
|
|
--whoogle-secondary-text: #70757a;
|
|
--whoogle-result-bg: #fff;
|
|
--whoogle-result-title: #1967d2;
|
|
--whoogle-result-url: #0d652d;
|
|
--whoogle-result-visited: #4b11a8;
|
|
|
|
/* DARK THEME COLORS */
|
|
--whoogle-dark-background: #222;
|
|
--whoogle-dark-accent: #685e79;
|
|
--whoogle-dark-text: #fff;
|
|
--whoogle-dark-contrast-text: #000;
|
|
--whoogle-dark-secondary-text: #bbb;
|
|
--whoogle-dark-result-bg: #000;
|
|
--whoogle-dark-result-title: #1967d2;
|
|
--whoogle-dark-result-url: #4b11a8;
|
|
--whoogle-dark-result-visited: #bbbbff;
|
|
}
|