74 lines
2.2 KiB
SCSS
74 lines
2.2 KiB
SCSS
// =============================================================
|
|
// Variables — design tokens du projet
|
|
// =============================================================
|
|
// Ce fichier est la source de vérité pour toutes les valeurs
|
|
// de couleur, typographie et espacement utilisées dans le projet.
|
|
// Modifier une valeur ici la propage à l'ensemble des composants.
|
|
|
|
// -------------------------------------------------------------
|
|
// Couleurs principales
|
|
// -------------------------------------------------------------
|
|
|
|
$color-primary: #007bff;
|
|
$color-primary-bg: #cce5ff;
|
|
$color-primary-bg-hover: #b8daff;
|
|
$color-danger: #dc3545;
|
|
$color-success-bg: #d4edda;
|
|
$color-success-border: #c3e6cb;
|
|
$color-success-text: #155724;
|
|
$color-danger-bg: #f8d7da;
|
|
$color-danger-border: #f5c6cb;
|
|
$color-danger-text: #721c24;
|
|
$color-warning-bg: #fff3cd;
|
|
$color-warning-text: #856404;
|
|
$color-info-bg: #d1ecf1;
|
|
$color-info-text: #0c5460;
|
|
$color-card-shadow: rgba(0, 0, 0, 0.07);
|
|
|
|
// -------------------------------------------------------------
|
|
// Couleurs neutres
|
|
// -------------------------------------------------------------
|
|
|
|
$color-text: #212529;
|
|
$color-text-muted: #6c757d;
|
|
$color-text-subtle: #aaa;
|
|
$color-bg-light: #f8f9fa;
|
|
$color-bg-white: #ffffff;
|
|
$color-bg-initials: #e9ecef;
|
|
$color-border: #dee2e6;
|
|
$color-border-light: #ccc;
|
|
|
|
// -------------------------------------------------------------
|
|
// Typographie
|
|
// -------------------------------------------------------------
|
|
|
|
$font-family-base: Arial, sans-serif;
|
|
$font-size-base: 1rem;
|
|
$font-size-sm: 0.875rem;
|
|
$font-size-footer: 0.9rem;
|
|
$font-size-xs: 0.85em;
|
|
$line-height-base: 1.5;
|
|
|
|
// -------------------------------------------------------------
|
|
// Espacements
|
|
// -------------------------------------------------------------
|
|
|
|
$spacing-xs: 0.25rem;
|
|
$spacing-sm: 0.5rem;
|
|
$spacing-md: 1rem;
|
|
$spacing-lg: 1.5rem;
|
|
$spacing-xl: 2rem;
|
|
|
|
// -------------------------------------------------------------
|
|
// Bordures
|
|
// -------------------------------------------------------------
|
|
|
|
$border-radius: 4px;
|
|
$border-radius-sm: 3px;
|
|
|
|
// -------------------------------------------------------------
|
|
// Responsive
|
|
// -------------------------------------------------------------
|
|
|
|
$breakpoint-mobile: 600px;
|