/* 强制覆盖一些顽固的绿色UI元素 */

/* 选项卡高亮 */
.tabs-component-tab.is-active {
  color: #465a6c !important;
  border-bottom-color: #465a6c !important;
}

/* 导航栏和侧边栏激活项 */
.navbar .navbar-items a.router-link-active,
.navbar .navbar-items a:hover,
.sidebar-item.active > .sidebar-heading,
.sidebar-item.active > a.sidebar-item-link {
  color: #465a6c !important;
}

/* 侧边栏激活项左边线 */
.sidebar-item.active > .sidebar-heading,
.sidebar-item.active > a.sidebar-item-link {
  border-left-color: #465a6c !important;
}

/* 按钮 */
.custom-container.tip,
div[class*='language-'].line-numbers-mode::after,
.custom-block.tip,
.theme-default-content .custom-container.tip {
  background-color: rgba(70, 90, 108, 0.1) !important;
  border-color: #465a6c !important;
}

/* 自定义块的标题 */
.custom-container.tip .custom-container-title,
.custom-block.tip .custom-block-title {
  color: #465a6c !important;
}

/* 搜索结果高亮 */
.search-box .suggestions .suggestion.focused {
  background-color: rgba(70, 90, 108, 0.1) !important;
}

/* 徽章 */
.badge.tip {
  background-color: #465a6c !important;
}

/* 进度条 */
#nprogress .bar {
  background-color: #465a6c !important;
}

/* 链接和导航箭头 */
a.sidebar-link.active,
a.sidebar-link:hover,
.prev-next-links .prev a,
.prev-next-links .next a {
  color: #465a6c !important;
} 