mediacube-ui 0.1.381 → 0.1.383
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/styles/global.scss +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.383](https://github.com/MediaCubeCo/mcui/compare/v0.1.382...v0.1.383) (2025-06-02)
|
|
6
|
+
|
|
7
|
+
### [0.1.382](https://github.com/MediaCubeCo/mcui/compare/v0.1.381...v0.1.382) (2025-06-02)
|
|
8
|
+
|
|
5
9
|
### [0.1.381](https://github.com/MediaCubeCo/mcui/compare/v0.1.380...v0.1.381) (2025-05-30)
|
|
6
10
|
|
|
7
11
|
### [0.1.380](https://github.com/MediaCubeCo/mcui/compare/v0.1.379...v0.1.380) (2025-05-29)
|
package/package.json
CHANGED
package/src/styles/global.scss
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@import "../tokens/font-families";
|
|
3
3
|
@import "../tokens/border-radius";
|
|
4
4
|
@import "../tokens/box-shadows";
|
|
5
|
+
@import "../tokens/colors";
|
|
5
6
|
|
|
6
7
|
html {
|
|
7
8
|
box-sizing: border-box;
|
|
@@ -289,8 +290,8 @@ pre {
|
|
|
289
290
|
#{'--color-'}#{$name}: #{$color};
|
|
290
291
|
}
|
|
291
292
|
// Default main project colors
|
|
292
|
-
--color-main: $color-purple;
|
|
293
|
-
--color-main-dark: $color-hover-purple;
|
|
293
|
+
--color-main: #{$color-purple};
|
|
294
|
+
--color-main-dark: #{$color-hover-purple};
|
|
294
295
|
@for $i from 1 through 10 {
|
|
295
296
|
#{'--color-main-alpha-'}#{$i * 10}: #{rgba($color-purple, $i / 10)};
|
|
296
297
|
}
|