84 lines
1.5 KiB
SCSS
84 lines
1.5 KiB
SCSS
|
$prefix: 'bs-';
|
||
|
|
||
|
$primary: #005eb8;
|
||
|
$secondary: #e93cac;
|
||
|
$success: #97d700;
|
||
|
$info: #41b6e6;
|
||
|
$warning: #ffc72c;
|
||
|
$danger: #da291c;
|
||
|
|
||
|
$light: #fff9e5;
|
||
|
$dark: #33322e;
|
||
|
|
||
|
$body-color: $dark;
|
||
|
$body-bg: $light;
|
||
|
$body-color-dark: $light;
|
||
|
$body-bg-dark: $dark;
|
||
|
|
||
|
$font-family-base: 'Sentient';
|
||
|
$font-family-sans: 'Libre Franklin', sans-serif;
|
||
|
$font-family-code: 'Azeret Mono', monospace;
|
||
|
$display-font-family: 'Cormorant', serif;
|
||
|
$headings-font-family: 'Libre Franklin', sans-serif;
|
||
|
|
||
|
$font-size-base: 1rem;
|
||
|
$small-font-size: 0.875em;
|
||
|
$code-font-size: 0.85em;
|
||
|
|
||
|
$h1-font-size: $font-size-base * 2.5;
|
||
|
$h2-font-size: $font-size-base * 2;
|
||
|
$h3-font-size: $font-size-base * 1.75;
|
||
|
$h4-font-size: $font-size-base * 1.5;
|
||
|
$h5-font-size: $font-size-base * 1.25;
|
||
|
$h6-font-size: $font-size-base;
|
||
|
|
||
|
$display-font-style: italic;
|
||
|
$display-font-weight: 700;
|
||
|
$display-line-height: 1.1;
|
||
|
|
||
|
$display-font-sizes: (
|
||
|
1: 54px,
|
||
|
2: 44px,
|
||
|
3: 39px,
|
||
|
4: 33px,
|
||
|
5: 27px,
|
||
|
6: 21px
|
||
|
) !default;
|
||
|
|
||
|
$font-sizes: (
|
||
|
1: $font-size-base * 2.5,
|
||
|
2: $font-size-base * 2,
|
||
|
3: $font-size-base * 1.75,
|
||
|
4: $font-size-base * 1.5,
|
||
|
5: $font-size-base * 1.25,
|
||
|
6: $font-size-base * 1,
|
||
|
7: $font-size-base * 0.875,
|
||
|
8: $font-size-base * 0.75,
|
||
|
9: $font-size-base * 0.625
|
||
|
) !default;
|
||
|
|
||
|
$spacer: 1rem;
|
||
|
|
||
|
$position-values: (
|
||
|
0: 0,
|
||
|
1: $spacer * 0.25,
|
||
|
2: $spacer * 0.5,
|
||
|
3: $spacer * 0.75,
|
||
|
4: $spacer * 1,
|
||
|
5: $spacer * 2,
|
||
|
6: $spacer * 3,
|
||
|
7: $spacer * 4,
|
||
|
8: $spacer * 5,
|
||
|
9: $spacer * 6,
|
||
|
25: 25%,
|
||
|
50: 50%,
|
||
|
75: 75%,
|
||
|
100: 100%,
|
||
|
auto: auto
|
||
|
) !default;
|
||
|
|
||
|
:root {
|
||
|
--#{$prefix}badge-border-radius: var(--#{$prefix}badge-border-radius);
|
||
|
}
|
||
|
|