mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
* Fixes for search on docs site We previously didn't include the search results page in our CI testing, so we missed some issues on that page. This ensures that page is part of regular testing, and also includes fixes for the issues present. * fix sidebar contrast
32 lines
662 B
CSS
32 lines
662 B
CSS
/* Copyright (C) 2012-2021 jrnl contributors
|
|
License: https://www.gnu.org/licenses/gpl-3.0.html */
|
|
|
|
:root {
|
|
/* For dark bg */
|
|
--white: #fcfcfc;
|
|
--off-white: #f4f0ff;
|
|
--purple: #7e57c2;
|
|
--light-purple: #cf93e6;
|
|
--blue: #61aeee;
|
|
--green: #a6e22e;
|
|
--orange: #fd971f;
|
|
--red: #eb5567;
|
|
--pink: #d57699;
|
|
--yellow: #e2b93d;
|
|
|
|
/* For light bg */
|
|
--black: #404040;
|
|
--teal: #2a8068;
|
|
--dark-blue: #356eb7;
|
|
--mid-purple: #846392;
|
|
--bright-purple: #af27ad;
|
|
--dark-purple: #604385;
|
|
--darkest-purple: #251A32;
|
|
--grey: #3b3b4a;
|
|
|
|
--black-shadow: #0000001A;
|
|
--blacker-shadow: #00000059;
|
|
|
|
/* Special cases */
|
|
--terminal: #1b1c2e;
|
|
}
|