AstroCom-API/public/assets/css/theme.css
2026-06-29 10:25:11 -06:00

62 lines
1.8 KiB
CSS

/* AstroCom Theme — consistent dark palette applied over Bootstrap */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
background-color: #111 !important;
color: #f0f0f0 !important;
font-family: 'Inter', sans-serif;
}
/* ── Navbar ─────────────────────────────────── */
.navbar.bg-dark {
background-color: #0d0d0d !important;
border-bottom: 1px solid #2e2e2e;
}
/* ── Cards ──────────────────────────────────── */
.card.bg-dark,
.card.bg-secondary {
background-color: #1e1e1e !important;
border: 1px solid #2e2e2e !important;
color: #f0f0f0 !important;
}
.card.bg-dark .card-title,
.card.bg-secondary .card-title {
color: #f0f0f0;
}
/* ── Tables ─────────────────────────────────── */
.table-dark {
--bs-table-bg: #1e1e1e;
--bs-table-striped-bg: #252525;
--bs-table-border-color: #2e2e2e;
--bs-table-color: #f0f0f0;
}
/* ── Form controls ──────────────────────────── */
.form-control,
.form-control.bg-dark {
background-color: #1a1a1a !important;
border-color: #3a3a3a !important;
color: #f0f0f0 !important;
}
.form-control:focus {
background-color: #222 !important;
border-color: #555 !important;
color: #f0f0f0 !important;
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.08) !important;
}
.form-control::placeholder {
color: #666;
}
/* ── Alerts ─────────────────────────────────── */
.alert-secondary {
background-color: #2a2a2a;
border-color: #3a3a3a;
color: #f0f0f0;
}