/* Custom styles goes here */


$custom-colors: (
  "primary": green,
  "secondary": #2ecc71,
  "accent": #e74c3c,
  "background": #ecf0f1,
  "text": #2c3e50
);

// Check if $theme-colors is defined; if not, define it first (optional safety)
$theme-colors: () !default;

// Merge your custom colors into the existing $theme-colors
$theme-colors: map-merge($theme-colors, $custom-colors);

