@acorex/styles 19.10.0-next.11 → 19.10.0-next.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tailwind-base.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "19.10.0-next.11",
3
+ "version": "19.10.0-next.12",
4
4
  "main": "index.js",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
package/tailwind-base.js CHANGED
@@ -147,7 +147,7 @@ const UTILITY_CLASSES = {
147
147
  '--ax-sys-size-base': '3.5rem',
148
148
  },
149
149
  };
150
- const createPalete = function (colorName) {
150
+ export const createPalete = function (colorName) {
151
151
  return {
152
152
  50: `rgba(var(--ax-sys-color-${colorName}-50), <alpha-value>)`,
153
153
  100: `rgba(var(--ax-sys-color-${colorName}-100), <alpha-value>)`,
@@ -162,7 +162,7 @@ const createPalete = function (colorName) {
162
162
  950: `rgba(var(--ax-sys-color-${colorName}-950), <alpha-value>)`,
163
163
  };
164
164
  };
165
- const createBackgroundPalete = function (colorName) {
165
+ export const createBackgroundPalete = function (colorName) {
166
166
  return {
167
167
  lightest: `rgba(var(--ax-sys-color-${colorName}-lightest-surface), <alpha-value>)`,
168
168
  lighter: `rgba(var(--ax-sys-color-${colorName}-lighter-surface), <alpha-value>)`,
@@ -175,7 +175,7 @@ const createBackgroundPalete = function (colorName) {
175
175
  };
176
176
  };
177
177
 
178
- const createOnPalete = function (colorName) {
178
+ export const createOnPalete = function (colorName) {
179
179
  return {
180
180
  'on-lightest': `rgba(var(--ax-sys-color-on-${colorName}-lightest-surface), <alpha-value>)`,
181
181
  'on-lighter': `rgba(var(--ax-sys-color-on-${colorName}-lighter-surface), <alpha-value>)`,
@@ -187,7 +187,7 @@ const createOnPalete = function (colorName) {
187
187
  'on-contrast': `rgba(var(--ax-sys-color-on-contrast-${colorName}), <alpha-value>)`,
188
188
  };
189
189
  };
190
- const createBorderPalete = function (colorName) {
190
+ export const createBorderPalete = function (colorName) {
191
191
  return {
192
192
  lightest: `rgba(var(--ax-sys-color-border-${colorName}-lightest-surface), <alpha-value>)`,
193
193
  lighter: `rgba(var(--ax-sys-color-border-${colorName}-lighter-surface), <alpha-value>)`,