mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
37 lines
934 B
SCSS
37 lines
934 B
SCSS
// Global variables
|
|
|
|
// Set base fonts
|
|
$font-family-sans-serif: 'Inter', system-ui, sans-serif;
|
|
// See https://github.com/tabler/tabler/issues/1812
|
|
$font-family-monospace: 'Roboto Mono';
|
|
|
|
// Set the navigation sidebar width
|
|
$sidebar-width: 18rem;
|
|
|
|
// Reduce the default button padding
|
|
$btn-padding-x: 0.5rem;
|
|
$btn-padding-y: 0.25rem;
|
|
|
|
// Reduce the default table cell padding
|
|
$table-cell-padding-x: 0.5rem;
|
|
$table-cell-padding-y: 0.5rem;
|
|
|
|
// Fix Tabler bug #1694 in 1.0.0-beta20
|
|
$hover-bg: rgba(var(--tblr-secondary-rgb), 0.08);
|
|
|
|
// Ensure active nav-pill has a background color in dark mode
|
|
$nav-pills-link-active-bg: rgba(var(--tblr-secondary-rgb), 0.15);
|
|
|
|
// Brand colors
|
|
$rich-black: #001423;
|
|
$rich-black-light: #081B2A;
|
|
$rich-black-lighter: #0D202E;
|
|
$rich-black-lightest: #1A2C39;
|
|
$bright-teal: #00F2D4;
|
|
$dark-teal: #00857D;
|
|
|
|
$primary: $dark-teal;
|
|
|
|
// Navbar active dropdown border color
|
|
$navbar-active-border-color: $dark-teal;
|