theminator
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"license": "MIT", | ||
"description": "Enhance your theme objects.", | ||
"description": "Theminator replaces the colors and dimensions (e.g. #123456 or 12rem) in your theme with objects containing useful methods that you can use to create derived values, like a darkened version of the background color or a multiplied border width for a hover effect.", | ||
"repository": "AndrewPrifer/theminator", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
# Theminator | ||
Theminator replaces your colors and dimensions (e.g. `#123456` or `12rem`) with objects containing useful methods that you can use to create derived values, like a darkened version of the background color or a multiplied border width for a hover effect. | ||
Theminator replaces the colors and dimensions (e.g. `#123456` or `12rem`) in your theme with objects containing useful methods that you can use to create derived values, like a darkened version of the background color or a multiplied border width for a hover effect. | ||
@@ -68,3 +68,3 @@ ## Installation | ||
border-color: ${color.darken(2).css()}; | ||
border-width: ${borderWidth.value * 2}${borderWidth.unit}; | ||
border-width: ${borderWidth.value * 2} ${borderWidth.unit}; | ||
`} | ||
@@ -71,0 +71,0 @@ > |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19851