@aristobyte-ui/utils 2.14.6 → 2.15.0
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/aristobyte-ui.settings.scss +4 -2
- package/es/.tsbuildinfo +1 -1
- package/es/icons/Branching.d.ts +3 -0
- package/es/icons/Branching.js +10 -0
- package/es/icons/Bulb.d.ts +3 -0
- package/es/icons/Bulb.js +8 -0
- package/es/icons/Fire.d.ts +3 -0
- package/es/icons/Fire.js +6 -0
- package/es/icons/Layers.d.ts +3 -0
- package/es/icons/Layers.js +8 -0
- package/es/icons/index.d.ts +4 -0
- package/es/icons/index.js +10 -2
- package/lib/.tsbuildinfo +1 -1
- package/lib/icons/Branching.d.ts +3 -0
- package/lib/icons/Branching.js +47 -0
- package/lib/icons/Bulb.d.ts +3 -0
- package/lib/icons/Bulb.js +45 -0
- package/lib/icons/Fire.d.ts +3 -0
- package/lib/icons/Fire.js +43 -0
- package/lib/icons/Layers.d.ts +3 -0
- package/lib/icons/Layers.js +45 -0
- package/lib/icons/index.d.ts +4 -0
- package/lib/icons/index.js +10 -2
- package/package.json +1 -1
|
@@ -63,6 +63,8 @@ $blue-600: #2563eb; // Main
|
|
|
63
63
|
$blue-700: #1d4ed8; // Hover
|
|
64
64
|
$blue-800: #1e40af;
|
|
65
65
|
$blue-900: #1e3a8a;
|
|
66
|
+
$blue-1000: #0f172b;
|
|
67
|
+
$blue-1100: #0b1120;
|
|
66
68
|
|
|
67
69
|
// === Secondary Scale (Indigo) === //
|
|
68
70
|
$indigo-50: #eef2ff;
|
|
@@ -106,9 +108,9 @@ $amber-700: #b45309; // Hover
|
|
|
106
108
|
|
|
107
109
|
// === Semantic Tokens === //
|
|
108
110
|
// === DEFAULT === //
|
|
109
|
-
$color-default: $
|
|
111
|
+
$color-default: $blue-1000;
|
|
110
112
|
$color-default-text: $grey-200;
|
|
111
|
-
$color-default-hover: $
|
|
113
|
+
$color-default-hover: $blue-1100;
|
|
112
114
|
$color-default-disabled: rgba($color-default, 0.5);
|
|
113
115
|
|
|
114
116
|
// === PRIMARY === //
|