diff --git a/.idea/editor.xml b/.idea/editor.xml
index fde5348..373c50f 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -201,7 +201,7 @@
-
+
@@ -215,7 +215,7 @@
-
+
diff --git a/docs/styles/links.css b/docs/styles/links.css
new file mode 100644
index 0000000..28a7e96
--- /dev/null
+++ b/docs/styles/links.css
@@ -0,0 +1,65 @@
+/* Normal links */
+a {
+ color: orange;
+}
+
+
+/* On hover/focus */
+a:hover,
+a:focus {
+ color: #ff9900; /* a slightly different orange, optional */
+}
+/* Navbar background */
+.navbar,
+.navbar-default,
+.navbar-inverse {
+ background-color: #a26228 !important; /* your orange */
+ border-color: #ff6600 !important;
+}
+
+/* Navbar brand + links */
+.navbar .navbar-brand,
+.navbar .navbar-nav > li > a {
+ color: #ffffff !important;
+}
+
+/* Active and hover states */
+.navbar .navbar-nav > .active > a,
+.navbar .navbar-nav > .active > a:focus,
+.navbar .navbar-nav > .active > a:hover,
+.navbar .navbar-nav > li > a:hover,
+.navbar .navbar-nav > li > a:focus {
+ color: #ffffff !important;
+}
+/* === DROPDOWN MENU BACKGROUND === */
+.navbar .dropdown-menu {
+ border-color: #ff6600 !important;
+}
+
+/* Caret icon (the little triangle) */
+.navbar .dropdown-toggle .caret {
+ border-top-color: #ffffff !important;
+ border-bottom-color: #ffffff !important;
+}
+
+/* === BOOTSTRAP 3 STYLE ITEMS (mkdocs + bootswatch darkly often use this) === */
+.navbar .dropdown-menu > li > a {
+ color: #ffffff !important;
+}
+
+.navbar .dropdown-menu > li > a:hover,
+.navbar .dropdown-menu > li > a:focus {
+ background-color: #e65c00 !important; /* darker orange on hover */
+ color: #ffffff !important;
+}
+
+/* === BOOTSTRAP 4+ STYLE ITEMS (if your theme uses .dropdown-item) === */
+.navbar .dropdown-item {
+ color: #ffffff !important;
+}
+
+.navbar .dropdown-item:hover,
+.navbar .dropdown-item:focus {
+ background-color: #e65c00 !important;
+ color: #ffffff !important;
+}
diff --git a/mkdocs.yml b/mkdocs.yml
index cabaeb5..c40b40d 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -3,4 +3,5 @@ theme:
name: darkly
extra_css:
- styles/center.css
- - styles/custom-header.css
\ No newline at end of file
+ - styles/custom-header.css
+ - styles/links.css
\ No newline at end of file