@spark-hire/bootstrap-themes 0.7.44 → 0.7.45-dev-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/dark.css +1 -1
- package/css/dark.map +1 -1
- package/css/light.css +1 -1
- package/css/light.map +1 -1
- package/html/light.html +1 -0
- package/package.json +1 -1
- package/scss/light/_variables.scss +7 -1
- package/scss/light/theme.scss +1 -1
- package/scss/nav.scss +4 -2
package/html/light.html
CHANGED
|
@@ -149,6 +149,7 @@
|
|
|
149
149
|
<button type="button" class="btn btn-dark mr-1 mb-1">Dark</button>
|
|
150
150
|
<button type="button" class="btn btn-link mr-1 mb-1">Link</button>
|
|
151
151
|
<button type="button" class="btn btn-purple mr-1 mb-1">Purple</button>
|
|
152
|
+
<button type="button" class="btn btn-body-color mr-1 mb-1">Body Color</button>
|
|
152
153
|
</p>
|
|
153
154
|
|
|
154
155
|
<p class="bs-component">
|
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import "../global_variables";
|
|
2
|
+
@import "~bootstrap/scss/variables";
|
|
2
3
|
|
|
3
4
|
$light: $gray-200;
|
|
4
5
|
|
|
@@ -8,5 +9,10 @@ $opacifiedBg: rgba(255,255,255,.25);
|
|
|
8
9
|
|
|
9
10
|
$emphasized-link-hover-darken-percentage: 90%;
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
$theme-colors: map-merge(
|
|
13
|
+
(
|
|
14
|
+
"body-color": $body-color
|
|
15
|
+
),
|
|
16
|
+
$theme-colors
|
|
17
|
+
);
|
|
12
18
|
|
package/scss/light/theme.scss
CHANGED