38 lines
973 B
CSS
38 lines
973 B
CSS
/* Акцентные цвета для темной темы */
|
|
[data-bs-theme="dark"] {
|
|
--bs-body-bg: #121212;
|
|
--bs-body-color: #e9ecef;
|
|
--bs-accent: #ffc107; /* Тот самый желтый */
|
|
}
|
|
|
|
[data-bs-theme="dark"] .table-custom-header {
|
|
background-color: #1e1e1e !important;
|
|
color: var(--bs-accent) !important;
|
|
}
|
|
|
|
/* Акцентные цвета для светлой темы */
|
|
[data-bs-theme="light"] {
|
|
--bs-body-bg: #e2e2e2;
|
|
--bs-body-color: #212529;
|
|
--bs-accent: #0f5132; /* Темно-зеленый */
|
|
}
|
|
|
|
/* Общие классы */
|
|
.text-accent {
|
|
color: var(--bs-accent) !important;
|
|
}
|
|
|
|
.btn-outline-accent {
|
|
color: var(--bs-accent) !important;
|
|
border-color: var(--bs-accent) !important;
|
|
}
|
|
|
|
.btn-outline-accent:hover {
|
|
background-color: var(--bs-accent) !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
/* Фикс для навигации */
|
|
.nav-link.active {
|
|
border-bottom: 2px solid var(--bs-accent);
|
|
} |