1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| [data-theme='dark'] { --global-bg: #0d0d0d; --font-color: rgba(255,255,255,0.7); --hr-border: rgba(255,255,255,0.4); --hr-before-color: rgba(255,255,255,0.7); --search-bg: #121212; --search-input-color: rgba(255,255,255,0.7); --search-a-color: rgba(255,255,255,0.7); --preloader-bg: #0d0d0d; --preloader-color: rgba(255,255,255,0.7); --tab-border-color: #2c2c2c; --tab-button-bg: #2c2c2c; --tab-button-color: rgba(255,255,255,0.7); --tab-button-hover-bg: #383838; --tab-button-active-bg: #121212; --card-bg: #121212; --sidebar-bg: #121212; --sidebar-menu-bg: #1f1f1f; --btn-hover-color: #787878; --btn-color: rgba(255,255,255,0.7); --btn-bg: #1f1f1f; --text-bg-hover: #383838; --light-grey: rgba(255,255,255,0.7); --dark-grey: rgba(255,255,255,0.2); --white: rgba(255,255,255,0.9); --text-highlight-color: rgba(255,255,255,0.9); --blockquote-color: rgba(255,255,255,0.7); --blockquote-bg: #2c2c2c; --reward-pop: #2c2c2c; --toc-link-color: rgba(255,255,255,0.6); --scrollbar-color: #525252; --timeline-bg: #1f1f1f; --zoom-bg: #121212; --mark-bg: rgba(0,0,0,0.6); --btn-color: #ccc; --btn-default-color: #929292; --tags-blue-color: #3e6f98; --tags-blue-color-lighten: rgba(66,139,202,0.15); --tags-pink-color: #dd3c8c; --tags-pink-color-lighten: rgba(255,105,180,0.15); --tags-red-color: #a41b1b; --tags-red-color-lighten: rgba(255,0,0,0.15); --tags-orange-color: #a76a20; --tags-orange-color-lighten: rgba(255,140,0,0.15); --tags-purple-color: #5f4490; --tags-purple-color-lighten: rgba(111,66,193,0.15); --tags-green-color: #4f8e4f; --tags-green-color-lighten: rgba(92,184,92,0.15); --note-default-border: #5a5a5a; --note-default-bg: #2b2b2b; --note-default-text: #b3b3b3; --note-modern-default-border: #9a9a9a; --note-modern-default-bg: #353535; --note-modern-default-text: #c4c4c4; --note-primary-border: #5935a1; --note-primary-bg: #2e1c3e; --note-primary-text: #a47dd4; --note-modern-primary-border: #9985cc; --note-modern-primary-bg: #3c2d4c; --note-modern-primary-text: #b693e6; --note-info-border: #346fa2; --note-info-bg: #1f2e3b; --note-info-text: #7bb3db; --note-modern-info-border: #7ca8b5; --note-modern-info-bg: #2b3c44; --note-modern-info-text: #8fc6e0; --note-success-border: #4a944a; --note-success-bg: #202e20; --note-success-text: #82c682; --note-modern-success-border: #8bb087; --note-modern-success-bg: #2c3d2c; --note-modern-success-text: #96d196; --note-warning-border: #c08a3e; --note-warning-bg: #3e301f; --note-warning-text: #e6ba6b; --note-modern-warning-border: #b8a285; --note-modern-warning-bg: #4b3c2b; --note-modern-warning-text: #d4b373; --note-danger-border: #b34440; --note-danger-bg: #3b201f; --note-danger-text: #e67572; --note-modern-danger-border: #c7898c; --note-modern-danger-bg: #4d2b2e; --note-modern-danger-text: #d98b8e; }
|