32 lines
902 B
CSS
32 lines
902 B
CSS
:root {
|
|
--background: #1b1919;
|
|
|
|
--foreground: #cdcdcd; /* text */
|
|
|
|
--accent:;
|
|
--borders: #2f2d2d;
|
|
--links: var(--accent);
|
|
|
|
|
|
/*Replacing these*/
|
|
--background-color: #1b1919;
|
|
--text-color: #cdcdcd;
|
|
--light-text-color: #dfdfdf;
|
|
--hr-color: grey;
|
|
--link-color: #a3b8f5;
|
|
--active-link-color: #f9f9f9;
|
|
--nav-item-link-color: #a3b8f5;
|
|
--nav-item-active-color: #a3b8f5;
|
|
--selection-highlight-color: #305ee8;
|
|
--preformatted-background-color: #2f2d2d;
|
|
--preformatted-text-color: #f9f9f9;
|
|
--callout-background-color: #2445a8;
|
|
--callout-text-color: #f9f9f9;
|
|
--callout-link-color: #e8eefd;
|
|
--callout-highlight-color: #bac9f7;
|
|
--blockquote-background-color: #2f2d2d;
|
|
--blockquote-text-color: #ffffff;
|
|
--blockquote-link-color: #ffffff;
|
|
--blockquote-highlight-color: #dfdfdf;
|
|
--social-icon-color: #a3b8f5;
|
|
}
|