@aristobyte-ui/utils 2.12.0 → 2.13.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 +8 -2
- package/es/.tsbuildinfo +1 -1
- package/es/icons/AristoByte.d.ts +3 -0
- package/es/icons/AristoByte.js +47 -0
- package/es/icons/AristoByteCLI.d.ts +3 -0
- package/es/icons/AristoByteCLI.js +38 -0
- package/es/icons/AristoByteUI.js +10 -10
- package/es/icons/index.d.ts +3 -2
- package/es/icons/index.js +42 -40
- package/lib/.tsbuildinfo +1 -1
- package/lib/icons/AristoByte.d.ts +3 -0
- package/lib/icons/{Logo.js → AristoByte.js} +17 -17
- package/lib/icons/AristoByteCLI.d.ts +3 -0
- package/lib/icons/AristoByteCLI.js +75 -0
- package/lib/icons/AristoByteUI.js +10 -10
- package/lib/icons/index.d.ts +3 -2
- package/lib/icons/index.js +4 -2
- package/package.json +1 -1
- package/es/icons/Logo.d.ts +0 -3
- package/es/icons/Logo.js +0 -47
- package/lib/icons/Logo.d.ts +0 -3
|
@@ -105,27 +105,33 @@ $amber-600: #d97706; // Main
|
|
|
105
105
|
$amber-700: #b45309; // Hover
|
|
106
106
|
|
|
107
107
|
// === Semantic Tokens === //
|
|
108
|
-
$color-default: $grey-
|
|
109
|
-
$color-default-
|
|
108
|
+
$color-default: $grey-600;
|
|
109
|
+
$color-default-text: $grey-200;
|
|
110
|
+
$color-default-hover: $grey-700;
|
|
110
111
|
$color-default-disabled: rgba($color-default, 0.5);
|
|
111
112
|
|
|
112
113
|
$color-primary: $blue-600;
|
|
114
|
+
$color-primary-text: $blue-200;
|
|
113
115
|
$color-primary-hover: $blue-700;
|
|
114
116
|
$color-primary-disabled: rgba($color-primary, 0.5);
|
|
115
117
|
|
|
116
118
|
$color-secondary: $indigo-600;
|
|
119
|
+
$color-secondary-text: $indigo-200;
|
|
117
120
|
$color-secondary-hover: $indigo-700;
|
|
118
121
|
$color-secondary-disabled: rgba($color-secondary, 0.5);
|
|
119
122
|
|
|
120
123
|
$color-error: $red-600;
|
|
124
|
+
$color-error-text: $red-200;
|
|
121
125
|
$color-error-hover: $red-700;
|
|
122
126
|
$color-error-disabled: rgba($color-error, 0.5);
|
|
123
127
|
|
|
124
128
|
$color-success: $green-600;
|
|
129
|
+
$color-success-text: $green-200;
|
|
125
130
|
$color-success-hover: $green-700;
|
|
126
131
|
$color-success-disabled: rgba($color-success, 0.5);
|
|
127
132
|
|
|
128
133
|
$color-warning: $amber-600;
|
|
134
|
+
$color-warning-text: $amber-200;
|
|
129
135
|
$color-warning-hover: $amber-700;
|
|
130
136
|
$color-warning-disabled: rgba($color-warning, 0.5);
|
|
131
137
|
|