Skip to content

Commit

Permalink
Merge pull request #66 from minedelve/develop
Browse files Browse the repository at this point in the history
v0.4.11
  • Loading branch information
Nycolaide authored Dec 31, 2024
2 parents fe2763e + 1391030 commit 71c324f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.11] - 2024-12-31

### Fixed

- Fix colors `getColor()` variables not working

## [0.4.10] - 2024-12-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For chatting with others using the framework:

[Join the Mytril Discord Server](https://discord.gg/fwyaGUhbav)

Copyright © 2022-2024 [Minedelve](https://minedelve.com), [Nycolaide](https://github.com/Nycolaide)
Copyright © 2022-2025 [Minedelve](https://minedelve.com), [Nycolaide](https://github.com/Nycolaide)

[version]: https://img.shields.io/npm/v/mytril.svg?label=Version&color=f58142
[license]: https://badgen.net/github/license/minedelve/mytril?label=License&color=cc5640
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mytril",
"description": "Mytril Svelte library component for rapidly building modern websites based on Svelte and Sveltekit",
"version": "0.4.9",
"version": "0.4.11",
"author": {
"name": "Nycolaide",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/composables/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const getColor = (color?: string) => {
if (match) return `var(--${match[1]}-${match[2]})`;
}

return `var(-myt-color-${color})`;
return `var(--myt-color-${color})`;
}
return undefined;
};

0 comments on commit 71c324f

Please sign in to comment.