colour settings start

This commit is contained in:
2025-05-25 21:15:28 +02:00
parent a8aeb2dbee
commit 3fe3037aed
14 changed files with 221 additions and 57 deletions

View File

@@ -1,12 +1,8 @@
:root {
--primary-color: #16767b;
--secondary-color: #741b5f;
--primary-light: #1a8a90;
--secondary-light: #8a2170;
}
/* Import color variables */
@import 'colors.css';
body {
background-color: #f8f9fa;
background-color: var(--bg-color);
}
.auth-container {
@@ -17,12 +13,12 @@ body {
.auth-card {
border: none;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 6px var(--shadow-color);
}
.auth-header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
color: var(--white);
padding: 20px;
border-radius: 10px 10px 0 0;
}
@@ -39,7 +35,7 @@ body {
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(22, 118, 123, 0.25);
box-shadow: 0 0 0 0.2rem var(--shadow-color-light);
}
.alert {