Skip to content

Commit

Permalink
New colors
Browse files Browse the repository at this point in the history
  • Loading branch information
KubaZ2 committed Sep 28, 2024
1 parent 62c8229 commit c9bf576
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Documentation/templates-src/NetCord/src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
}

:root {
--bs-font-monospace: Cascadia Code, monospace;
--blurple: #5865f2;
--blurple-rgb: 88, 101, 242;
--dark-blurple: #4752c4;
--dark-blurple-rgb: 71, 82, 196;
--bs-font-monospace: Cascadia Code, monospace;
--bs-link-color: var(--blurple);
--bs-link-color-rgb: var(--blurple-rgb);
--bs-link-hover-color: var(--dark-blurple);
--bs-link-hover-color-rgb: var(--dark-blurple-rgb);
--ligatures: none;
--snow-icon: "\f2bb";
--snowflake-color: #a0ffff;
Expand All @@ -30,6 +36,11 @@

[data-bs-theme="dark"] {
--tooltip-color: white;
--bs-body-bg: #1f1f1f;
}

[data-bs-theme="dark"] .hljs {
background-color: #1a1a1a;
}

.navbar-nav {
Expand Down

0 comments on commit c9bf576

Please sign in to comment.