33 lines
565 B
CSS
33 lines
565 B
CSS
|
|
/* Orange and Dark Gray Theme */
|
|
:root {
|
|
--bs-primary: #fd7e14; /* Vivid Orange */
|
|
--bs-secondary: #6c757d;
|
|
--bs-dark: #343a40;
|
|
--bs-primary-rgb: 253, 126, 20;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--bs-primary);
|
|
border-color: var(--bs-primary);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #e46a0a;
|
|
border-color: #d16209;
|
|
}
|
|
|
|
.navbar-dark {
|
|
background-color: var(--bs-dark) !important;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #343a40;
|
|
color: white;
|
|
}
|