beathers 5.7.0 → 5.7.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beathers",
3
- "version": "5.7.0",
3
+ "version": "5.7.2",
4
4
  "type": "module",
5
5
  "description": "Beather is a lightweight SCSS library that serves as a comprehensive design system for your projects. It offers a structured and consistent approach to manage colors, fonts, and other design related variables, making it easier to maintain a cohesive visual identity across your application.",
6
6
  "main": "index.js",
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Beathers v5.7.0 (https://bhoenixstudio.com/beathers)
2
+ * Beathers v5.7.2 (https://bhoenixstudio.com/beathers)
3
3
  * Copyright 2020-2025 Bhoenix Studio
4
4
  */
5
5
 
@@ -1,11 +1,12 @@
1
1
  @use '../settings/index' as settings;
2
2
  @use '../variables' as vars;
3
+ @use '../settings/defaults' as defs;
3
4
 
4
5
  // Definitions
5
6
  $useLoader: if(vars.$useLoader != null, vars.$useLoader, settings.$useLoader);
6
7
  $useColorsLightMode: if(vars.$useColorsLightMode != null, vars.$useColorsLightMode, settings.$useColorsLightMode);
7
8
  $useColorsDarkMode: if(vars.$useColorsDarkMode != null, vars.$useColorsDarkMode, settings.$useColorsDarkMode);
8
- $loaderColorMain: if(vars.$loaderColorMain != null, vars.$loaderColorMain, defs.$loaderColorMain);
9
+ $loaderColorMain: if(vars.$loaderColorMain != null, vars.$loaderColorMain, loaderColorMain.$loaderColorMain);
9
10
  $loaderColorSecond: if(vars.$loaderColorSecond != null, vars.$loaderColorSecond, defs.$loaderColorSecond);
10
11
  $loaderDuration: if(vars.$loaderDuration != null, vars.$loaderDuration, defs.$loaderDuration);
11
12