11// Color system
22
3- $white : #fff ;
3+ $white : #fff ;
44$gray-100 : #f8f9fa ;
55$gray-200 : #e9ecef ;
66$gray-300 : #dee2e6 ;
@@ -10,15 +10,15 @@ $gray-600: #6c757d;
1010$gray-700 : #495057 ;
1111$gray-800 : #343a40 ;
1212$gray-900 : #212529 ;
13- $black : #000 ;
13+ $black : #000 ;
1414
15- $yellow : #ffe000 ;
16- $black : #1d2d35 ;
17- $beige : #fbf7f0 ;
15+ $yellow : #ffe000 ;
16+ $black : #1d2d35 ;
17+ $beige : #fbf7f0 ;
1818
1919// $red: #e55235;
20- $purple : #5d2f86 ;
21- $brown : #aa9c84 ;
20+ $purple : #5d2f86 ;
21+ $brown : #aa9c84 ;
2222
2323$blue-300 : #8ed6fb ;
2424$pink-100 : #fcfaff ;
@@ -34,20 +34,20 @@ $color-btn-text: $white;
3434//
3535// Quickly modify global styling by enabling or disabling optional features.
3636
37- $enable-caret : true;
38- $enable-rounded : true;
39- $enable-shadows : false;
40- $enable-gradients : false;
41- $enable-transitions : true;
42- $enable-reduced-motion : true;
43- $enable-smooth-scroll : true;
44- $enable-grid-classes : true;
45- $enable-button-pointers : true;
46- $enable-rfs : true;
47- $enable-validation-icons : true;
48- $enable-negative-margins : true;
37+ $enable-caret : true;
38+ $enable-rounded : true;
39+ $enable-shadows : false;
40+ $enable-gradients : false;
41+ $enable-transitions : true;
42+ $enable-reduced-motion : true;
43+ $enable-smooth-scroll : true;
44+ $enable-grid-classes : true;
45+ $enable-button-pointers : true;
46+ $enable-rfs : true;
47+ $enable-validation-icons : true;
48+ $enable-negative-margins : true;
4949$enable-deprecation-messages : true;
50- $enable-important-utilities : true;
50+ $enable-important-utilities : true;
5151
5252/* * Bootstrap navbar fix (https://git.io/fADqW) */
5353$navbar-dark-toggler-icon-bg : none ;
@@ -63,15 +63,15 @@ $navbar-light-toggler-icon-bg: none;
6363//
6464// Settings for the `<body>` element.
6565
66- $body-bg : $white ;
67- $body-color : $black ;
66+ $body-bg : $white ;
67+ $body-color : $black ;
6868
6969// Links
7070//
7171// Style anchor elements.
7272
73- $link-color : $primary ;
74- $link-decoration : none ;
73+ $link-color : $primary ;
74+ $link-decoration : none ;
7575
7676// Grid containers
7777//
@@ -82,7 +82,7 @@ $container-max-widths: (
8282 md : 720px ,
8383 lg : 960px ,
8484 xl : 1240px ,
85- xxl : 1320px
85+ xxl : 1320px ,
8686);
8787
8888@include _assert-ascending ($container-max-widths , " $container-max-widths" );
@@ -91,38 +91,42 @@ $container-max-widths: (
9191//
9292// Set the number of columns and specify the width of the gutters.
9393
94- $grid-columns : 16 ;
95- $grid-gutter-width : 48px ;
96- $grid-row-columns : 6 ;
94+ $grid-columns : 16 ;
95+ $grid-gutter-width : 48px ;
96+ $grid-row-columns : 6 ;
9797
9898// Components
9999//
100100// Define common padding and border radius sizes and more.
101101
102- $border-color : $gray-200 ;
102+ $border-color : $gray-200 ;
103103
104104// Typography
105105//
106106// Font, line-height, and color for body text, headings, and more.
107107
108108// stylelint-disable value-keyword-case
109- $font-family-sans-serif : " Jost" , -apple-system , blinkmacsystemfont, " Segoe UI" , roboto, " Helvetica Neue" , arial , " Noto Sans" , sans-serif , " Apple Color Emoji" , " Segoe UI Emoji" , " Segoe UI Symbol" , " Noto Color Emoji" ;
110- $font-family-monospace : sfmono- regular, menlo, monaco, consolas, " Liberation Mono" , " Courier New" , monospace ;
111- $font-family-base : $font-family-sans-serif ;
109+ $font-family-sans-serif :
110+ -apple-system , blinkmacsystemfont, " Segoe UI" , " Noto Sans" , helvetica , arial ,
111+ sans-serif , " Apple Color Emoji" , " Segoe UI Emoji" ;
112+ $font-family-monospace :
113+ ui-monospace , sfmono- regular, " SF Mono" , menlo, consolas, " Liberation Mono" ,
114+ monospace ;
115+ $font-family-base : $font-family-sans-serif ;
112116// stylelint-enable value-keyword-case
113117
114- $font-size-base : 1rem ; // Assumes the browser default, typically `16px`
115- $font-size-xl : $font-size-base * 1.375 ;
116- $font-size-lg : $font-size-base * 1.25 ;
117- $font-size-md : $font-size-base * 1.125 ;
118- $font-size-sm : $font-size-base * 0.875 ;
118+ $font-size-base : 1rem ; // Assumes the browser default, typically `16px`
119+ $font-size-xl : $font-size-base * 1.375 ;
120+ $font-size-lg : $font-size-base * 1.25 ;
121+ $font-size-md : $font-size-base * 1.125 ;
122+ $font-size-sm : $font-size-base * 0.875 ;
119123
120124// $line-height-base: 1.5;
121125
122- $headings-font-family : null;
123- $headings-font-weight : 700 ;
126+ $headings-font-family : null;
127+ $headings-font-weight : 600 ;
124128
125- $lead-font-weight : 400 ;
129+ $lead-font-weight : 400 ;
126130
127131// Spacing
128132//
@@ -134,33 +138,33 @@ $spacer: 1rem;
134138
135139// Navbar
136140
137- $navbar-padding-y : $spacer / 2 ;
138- $navbar-padding-x : null;
141+ $navbar-padding-y : $spacer / 2 ;
142+ $navbar-padding-x : null;
139143
140- $navbar-nav-link-padding-x : 0.5rem ;
144+ $navbar-nav-link-padding-x : 0.5rem ;
141145
142- $navbar-light-color : $black ;
143- $navbar-light-hover-color : $primary ;
144- $navbar-light-active-color : $primary ;
146+ $navbar-light-color : $black ;
147+ $navbar-light-hover-color : $primary ;
148+ $navbar-light-active-color : $primary ;
145149
146150// Cards
147151
148- $card-border-color : $gray-200 ;
152+ $card-border-color : $gray-200 ;
149153
150154// Alerts
151155//
152156// Define alert colors, border radius, and padding.
153157
154- $alert-padding-y : $spacer ;
155- $alert-padding-x : $spacer * 1.5 ;
156- $alert-margin-bottom : 0 ;
157- $alert-border-radius : 0 ;
158- $alert-link-font-weight : $headings-font-weight ;
159- $alert-border-width : 0 ;
158+ $alert-padding-y : $spacer ;
159+ $alert-padding-x : $spacer * 1.5 ;
160+ $alert-margin-bottom : 0 ;
161+ $alert-border-radius : 0 ;
162+ $alert-link-font-weight : $headings-font-weight ;
163+ $alert-border-width : 0 ;
160164
161- $alert-bg-scale : 0 ;
162- $alert-border-scale : 0 ;
163- $alert-color-scale : 0 ;
165+ $alert-bg-scale : 0 ;
166+ $alert-border-scale : 0 ;
167+ $alert-color-scale : 0 ;
164168
165169// docsearch
166170$dropdown-config : (
@@ -184,7 +188,7 @@ $dropdown-config: (
184188 text-color : $black ,
185189 highlight-color : $purple ,
186190 highlight-opacity : 0.1 ,
187- highlight-type : underline
191+ highlight-type : underline ,
188192);
189193
190- $input-btn-focus-width : 0 ;
194+ $input-btn-focus-width : 0 ;
0 commit comments