mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
31 lines
908 B
SCSS
31 lines
908 B
SCSS
$theme-colors: (
|
|
"primary": #175ddc,
|
|
"primary-accent": #1252a3,
|
|
"danger": #dd4b39,
|
|
"success": #00a65a,
|
|
"info": #555555,
|
|
"warning": #bf7e16,
|
|
"secondary": #ced4da,
|
|
"secondary-alt": #1a3b66,
|
|
);
|
|
$font-family-sans-serif: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
|
|
$h1-font-size: 2rem;
|
|
$h2-font-size: 1.3rem;
|
|
$h3-font-size: 1rem;
|
|
$h4-font-size: 1rem;
|
|
$h5-font-size: 1rem;
|
|
$h6-font-size: 1rem;
|
|
|
|
$primary: map_get($theme-colors, "primary");
|
|
$primary-accent: map_get($theme-colors, "primary-accent");
|
|
$success: map_get($theme-colors, "success");
|
|
$info: map_get($theme-colors, "info");
|
|
$warning: map_get($theme-colors, "warning");
|
|
$danger: map_get($theme-colors, "danger");
|
|
$secondary: map_get($theme-colors, "secondary");
|
|
$secondary-alt: map_get($theme-colors, "secondary-alt");
|
|
|
|
@import "~bootstrap/scss/bootstrap.scss";
|