_variables.scss 791 B

1234567891011121314151617181920212223242526272829303132
  1. // Global variables
  2. // Set base fonts
  3. $font-family-sans-serif: 'Inter', system-ui, sans-serif;
  4. $font-family-monospace: 'Roboto Mono';
  5. // Set the navigation sidebar width
  6. $sidebar-width: 18rem;
  7. // Reduce the default button padding
  8. $btn-padding-x: 0.5rem;
  9. $btn-padding-y: 0.25rem;
  10. // Reduce the default table cell padding
  11. $table-cell-padding-x: 0.5rem;
  12. $table-cell-padding-y: 0.5rem;
  13. // Ensure active nav-pill has a background color in dark mode
  14. $nav-pills-link-active-bg: rgba(var(--tblr-secondary-rgb), 0.15);
  15. // Brand colors
  16. $rich-black: #001423;
  17. $rich-black-light: #081B2A;
  18. $rich-black-lighter: #0D202E;
  19. $rich-black-lightest: #1A2C39;
  20. $bright-teal: #00F2D4;
  21. $dark-teal: #00857D;
  22. $primary: $dark-teal;
  23. // Navbar active dropdown border color
  24. $navbar-active-border-color: $dark-teal;