@spark-hire/bootstrap-themes 0.9.13 → 1.0.0-ada-1
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/package.json +1 -1
- package/scss/_global_variables.scss +3 -2
- package/scss/dark/_variables.scss +11 -9
- package/scss/dark/theme.scss +8 -0
- package/scss/link.scss +5 -5
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ $dark-blue: #213d55;
|
|
|
29
29
|
$midnight-blue: #1a3043;
|
|
30
30
|
|
|
31
31
|
$primary: $blue;
|
|
32
|
-
$secondary: $gray-
|
|
32
|
+
$secondary: $gray-700;
|
|
33
33
|
$info: $cyan;
|
|
34
34
|
$success: #28a745;
|
|
35
35
|
$warning: #ffc107;
|
|
@@ -100,7 +100,7 @@ $btn-line-height-lg: 1.4;
|
|
|
100
100
|
$btn-disabled-opacity: .45;
|
|
101
101
|
$btn-padding-y-sm: .75;
|
|
102
102
|
|
|
103
|
-
$link-color:
|
|
103
|
+
$link-color: #155E9D;
|
|
104
104
|
$link-decoration: none;
|
|
105
105
|
$link-hover-color: lighten($link-color, 13%);
|
|
106
106
|
$link-hover-decoration: none;
|
|
@@ -123,6 +123,7 @@ $modal-sm: 350px;
|
|
|
123
123
|
$modal-content-box-shadow-xs: 0 0.15rem 0.6rem rgba(0, 0, 0, 0.4);
|
|
124
124
|
$modal-content-box-shadow-sm-up: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.4);
|
|
125
125
|
|
|
126
|
+
$grays: (); // For some reason we started getting an error where these was undefined
|
|
126
127
|
|
|
127
128
|
@import "~bootstrap/scss/functions";
|
|
128
129
|
@import "~bootstrap/scss/mixins";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
@import "../global_variables";
|
|
2
2
|
|
|
3
|
-
$gray-100: #
|
|
4
|
-
$gray-200: #
|
|
5
|
-
$gray-300: #
|
|
6
|
-
$gray-400: #
|
|
7
|
-
$gray-500: #
|
|
8
|
-
$gray-600: #
|
|
9
|
-
$gray-700: #
|
|
10
|
-
$gray-800: #
|
|
3
|
+
$gray-100: #F8F9FA;
|
|
4
|
+
$gray-200: #DEE3E6;
|
|
5
|
+
$gray-300: #CDD3D9;
|
|
6
|
+
$gray-400: #B6BFC7;
|
|
7
|
+
$gray-500: #96A0AA;
|
|
8
|
+
$gray-600: #6E7780;
|
|
9
|
+
$gray-700: #4F565D;
|
|
10
|
+
$gray-800: #343A40;
|
|
11
11
|
$gray-900: #212529;
|
|
12
|
-
$gray-1000: #
|
|
12
|
+
$gray-1000: #1A1C20;
|
|
13
13
|
|
|
14
14
|
$light: $gray-800;
|
|
15
15
|
$dark: $gray-1000;
|
|
@@ -81,3 +81,5 @@ $dropdown-link-hover-bg: $gray-200;
|
|
|
81
81
|
$dropdown-border-color: transparent;
|
|
82
82
|
|
|
83
83
|
$opacifiedBg: rgba(255,255,255,.25);
|
|
84
|
+
|
|
85
|
+
$link-color: #6ba3d5;
|
package/scss/dark/theme.scss
CHANGED
package/scss/link.scss
CHANGED