You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

103 regels
4.1 KiB

  1. // ─── Color Palette ───────────────────────────────────────────────────────────
  2. $color-primary: #4a90d9;
  3. $color-primary-dark: #3178b8;
  4. $color-primary-light: #6aaee8;
  5. $color-header-from: #5b9fd6;
  6. $color-header-to: #3a7bbf;
  7. $color-accent: #f0a500;
  8. $color-accent-dark: #d4900a;
  9. $color-accent-light: #f5bc3a;
  10. $color-white: #ffffff;
  11. $color-bg: #dce9f5;
  12. $color-card: #f0f0f0;
  13. $color-card-white: #ffffff;
  14. $color-text-dark: #1a2a3a;
  15. $color-text-base: #3a4a5a;
  16. $color-text-muted: #7a8a9a;
  17. $color-text-light: #aab8c6;
  18. $color-border: #d0d8e0;
  19. $color-input-bg: #ffffff;
  20. $color-input-border: #b8c4d0;
  21. $color-day-active-bg: #1a2a3a;
  22. $color-day-active-text:#ffffff;
  23. $color-error: #c83232;
  24. $color-success: #2d9e60;
  25. $color-success-bg: #e6f5ee;
  26. $color-activate: #3a9a3a;
  27. $color-activate-light: #4ab44a;
  28. $color-warning: #b86200;
  29. $color-warning-light: #e8820a;
  30. $color-overlay: rgba(0, 0, 0, 0.45);
  31. // ─── CSS Custom Properties (runtime-overridable via brand color) ──────────────
  32. :root {
  33. --color-primary: #{$color-primary};
  34. --color-primary-dark: #{$color-primary-dark};
  35. --color-primary-light: #{$color-primary-light};
  36. --color-header-from: #{$color-header-from};
  37. --color-header-to: #{$color-header-to};
  38. --color-bg: #{$color-bg};
  39. --color-primary-rgb: 74, 144, 217;
  40. --header-text: #{$color-white};
  41. --header-text-muted: rgba(255, 255, 255, 0.75);
  42. --header-overlay: rgba(255, 255, 255, 0.18);
  43. }
  44. // ─── Typography ──────────────────────────────────────────────────────────────
  45. $font-family-base: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  46. $font-size-xs: 0.7rem;
  47. $font-size-sm: 0.8rem;
  48. $font-size-base: 0.875rem;
  49. $font-size-md: 1rem;
  50. $font-size-lg: 1.15rem;
  51. $font-size-xl: 1.4rem;
  52. $font-weight-regular: 400;
  53. $font-weight-medium: 500;
  54. $font-weight-bold: 700;
  55. $line-height-base: 1.5;
  56. // ─── Spacing ─────────────────────────────────────────────────────────────────
  57. $space-1: 0.25rem;
  58. $space-2: 0.5rem;
  59. $space-3: 0.75rem;
  60. $space-4: 1rem;
  61. $space-5: 1.25rem;
  62. $space-6: 1.5rem;
  63. $space-8: 2rem;
  64. $space-10: 2.5rem;
  65. $space-12: 3rem;
  66. // ─── Border Radius ───────────────────────────────────────────────────────────
  67. $radius-sm: 4px;
  68. $radius-md: 8px;
  69. $radius-lg: 16px;
  70. $radius-xl: 24px;
  71. $radius-pill: 100px;
  72. // ─── Shadows ─────────────────────────────────────────────────────────────────
  73. $shadow-card: 0 2px 12px rgba(0, 60, 120, 0.08);
  74. $shadow-header: 0 2px 16px rgba(0, 50, 120, 0.2);
  75. $shadow-calendar: 0 8px 32px rgba(0, 60, 120, 0.35);
  76. $shadow-input: 0 1px 3px rgba(0, 40, 80, 0.06) inset;
  77. $shadow-focus: 0 0 0 3px rgba($color-primary, 0.15);
  78. $shadow-button: 0 2px 8px rgba($color-accent, 0.35);
  79. // ─── Transitions ─────────────────────────────────────────────────────────────
  80. $transition-fast: 0.15s ease;
  81. $transition-base: 0.2s ease;
  82. $transition-slow: 0.3s ease;
  83. // ─── Layout ──────────────────────────────────────────────────────────────────
  84. $header-height: 88px;
  85. $content-max-width: 860px;
  86. $icon-btn-size: 28px;
  87. $icon-svg-size: 14px;