/**
 * Custom Theme - Blue Color Scheme
 * Converts all green primary colors to blue (#3CB5E3)
 */

:root,
.dark-mode-disabled {
  /* Primary Colors - Changed from green to blue */
  --primary: 197 75% 56%; /* #3CB5E3 - Main blue color */
  --primary-foreground: 0 0% 100%; /* White text on blue buttons */
  
  /* Focus Ring - Match primary color */
  --ring: 197 75% 56%; /* Blue focus ring */
  
  /* Field Card Border - Change from green to blue */
  --field-card-border: 197 75% 56%; /* Blue field card borders */
  
  /* Card Border Tint - Optional: change accent highlight */
  --card-border-tint: 197 75% 56%; /* Blue accent on cards */
}

.dark:not(.dark-mode-disabled) {
  /* Dark Mode - Slightly lighter blue for better contrast */
  --primary: 197 75% 60%; /* Slightly lighter blue in dark mode */
  --primary-foreground: 0 0% 100%; /* White text */
  --ring: 197 75% 60%; /* Match primary */
  --field-card-border: 197 75% 60%; /* Match primary */
  --card-border-tint: 197 75% 60%; /* Match primary */
  
  /* Secondary and Accent Foreground - Changed from green to blue */
  --secondary-foreground: 197 75% 60%; /* Blue text on secondary elements */
  --accent-foreground: 197 75% 60%; /* Blue text on accent elements */
}

/* Override hardcoded Tailwind documenso color (green #A2E771) */
.bg-documenso,
.dark\:bg-documenso:is(.dark:not(.dark-mode-disabled) *) {
  background-color: #3CB5E3 !important; /* Override hardcoded green */
}

.text-documenso,
.dark\:text-documenso:is(.dark:not(.dark-mode-disabled) *) {
  color: #3CB5E3 !important; /* Override hardcoded green text */
}

.border-documenso,
.dark\:border-documenso:is(.dark:not(.dark-mode-disabled) *) {
  border-color: #3CB5E3 !important; /* Override hardcoded green border */
}
