31 lines
566 B
CSS
31 lines
566 B
CSS
:root {
|
|
/* body background */
|
|
--bg-1: #2e3440;
|
|
/* background of the content */
|
|
--bg-2: #3b4252;
|
|
/* input suggestions background */
|
|
--bg-3: #434c5e;
|
|
/* mostly borders */
|
|
--bg-4: #5e81ac;
|
|
|
|
/* main text color */
|
|
--fg-1: #eceff4;
|
|
/* search result description */
|
|
--fg-2: #e5e9f0;
|
|
--fg-3: #d8dee9;
|
|
|
|
/* focus outline */
|
|
--accent: #88c0d0;
|
|
|
|
--link: #88c0d0;
|
|
--link-visited: #5e81ac;
|
|
|
|
/* green */
|
|
--positive: #a3be8c;
|
|
|
|
--syntax-string: #8fbcbb;
|
|
--syntax-special: #5e81ac;
|
|
--syntax-constant: #b48ead;
|
|
--syntax-comment: #d8dee9;
|
|
}
|