mirror of
https://github.com/infinition/Bjorn.git
synced 2026-02-05 03:31:02 +00:00
25 lines
541 B
CSS
25 lines
541 B
CSS
:root {
|
|
--bg-body: #eceff4;
|
|
--bg-sidebar: #e5e9f0;
|
|
--border-color: #d8dee9;
|
|
--text-main: #4c566a;
|
|
--text-heading: #2e3440;
|
|
--accent-green: #88c0d0;
|
|
--accent-dim: rgba(136, 192, 208, 0.1);
|
|
--code-bg: #d8dee9;
|
|
}
|
|
|
|
/* Nord Light specific overrides */
|
|
.markdown-body a {
|
|
color: #5e81ac;
|
|
}
|
|
|
|
.nav-link.active {
|
|
background-color: rgba(136, 192, 208, 0.1) !important;
|
|
border-left-color: #88c0d0 !important;
|
|
color: #5e81ac !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #d8dee9 !important;
|
|
} |