
/* Default */
body{
    --btn-primary: #001f3f;
    --btn-primary-border: #001f3f;
    --primary: #001f3f;
    --secondary: #6c757d;
}
body.dark-mode{
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* Navy */
body[data-theme="navy"] {
    --btn-primary: #001f3f;
    --btn-primary-border: #001f3f;
    --primary: #001f3f;
    --secondary: #6c757d;
}
body.dark-mode[data-theme="navy"] {
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* SBA-Preprod */
body[data-theme="sba-preprod"] {
    --btn-primary: #65cfe9;
    --btn-primary-border: #65cfe9;
    --primary: #008B95;
    --secondary: #6c757d;
}
body.dark-mode[data-theme="sba-preprod"] {
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* SBA */
body[data-theme="sba"] {
    --btn-primary: #1FB25A;
    --btn-primary-border: #629541;
    --primary: #004B8E;
    --secondary: #6c757d;
}
body.dark-mode[data-theme="sba"] {
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* SBA-Sandbox */
body[data-theme="sba-sandbox"] {
    --btn-primary: #008b95;
    --btn-primary-border: #00747D;
    --primary: #5E6A71;
    --secondary: #6c757d;
}
body.dark-mode[data-theme="sba-sandbox"] {
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* TASC-UAT */
body[data-theme="tasc-uat"] {
    --btn-primary: #009ca6;
    --btn-primary-border: #009ca6;
    --primary: #005F6A;
    --secondary: #FFCD00;
    --sidebar-active-bg: #FFCD00;
    --sidebar-active-text: #343a40;
}
body.dark-mode[data-theme="tasc-uat"] {
    --btn-primary: #459aa3;
    --btn-primary-border: #459aa3;
    --sidebar-active-bg: #524511;
    --sidebar-active-text: #FFCD00;
    --sidebar-open-bg: #275e69;
    --sidebar-open-text: #fff;
}

/* AURORA */
body[data-theme="aurora"] {
    --btn-primary: #353d3f;
    --btn-primary-border: #353d3f;
    --primary: #205968;
    --secondary: #353d3f;
}
body.dark-mode[data-theme="aurora"] {
    --btn-primary: #7AB555;
    --btn-primary-border: #7AB555;
}

/* Default */
:root {
  --blue: #004B8E;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}