mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-06 22:00:40 +08:00
87 lines
1.8 KiB
CSS
87 lines
1.8 KiB
CSS
|
|
|
|
:root {
|
|
--md-primary-fg-color: #765bfa;
|
|
--md-accent-fg-color: #AEA1F1;
|
|
}
|
|
|
|
/*
|
|
@media (prefers-color-scheme: light) {
|
|
body {
|
|
--md-primary-fg-color: #00ffee !important;
|
|
--md-primary-bg-color: #ff0000 !important;
|
|
}
|
|
|
|
body, .md-main, .md-content {
|
|
background-color: #4312f5 !important;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
--md-primary-fg-color: #171518 !important;
|
|
--md-primary-bg-color: #171518 !important;
|
|
}
|
|
|
|
body, .md-main, .md-content {
|
|
background-color: #171518 !important;
|
|
}
|
|
|
|
.md-header__title {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-tabs .md-tabs__link {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-tabs .md-tabs__link:hover,
|
|
.md-tabs .md-tabs__link:focus {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-header__button {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-header__button svg {
|
|
fill: currentColor !important;
|
|
}
|
|
|
|
.md-header__button:hover,
|
|
.md-header__button:focus {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-header__button:hover svg,
|
|
.md-header__button:focus svg {
|
|
fill: currentColor !important;
|
|
}
|
|
|
|
.md-search__icon svg {
|
|
fill: #ffffff !important;
|
|
}
|
|
|
|
.md-search__input {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.md-nav__item--active > .md-nav__link--active,
|
|
.md-nav__link--active {
|
|
color: #AEA1F1 !important;
|
|
}
|
|
|
|
.md-nav--secondary .md-nav__title {
|
|
background: #171518;
|
|
box-shadow: 0 0 0.4rem 0.4rem #171518;
|
|
}
|
|
|
|
.md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link {
|
|
background: #171518;
|
|
box-shadow: 0 0 0.4rem 0.4rem #171518;
|
|
}
|
|
|
|
.md-content a {
|
|
color: #AEA1F1 !important;
|
|
}
|
|
} */ |