quasar-ui-danx 0.2.20 → 0.2.21

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.2.20",
3
+ "version": "0.2.21",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -1,8 +1,10 @@
1
1
  /** @type {import("tailwindcss").Config} */
2
2
  import twColors from "tailwindcss/colors";
3
3
 
4
+ const ignore = ["lightBlue", "warmGray", "trueGray", "coolGray", "blueGray"];
5
+
4
6
  // Convert all TW colors to CSS Variables
5
- const colorKeys = Object.keys(twColors).filter(c => twColors[c].hasOwnProperty("500"));
7
+ const colorKeys = Object.keys(twColors).filter(c => !ignore.includes(c) && twColors[c].hasOwnProperty("500"));
6
8
  const colors = {};
7
9
 
8
10
  for (const name of colorKeys) {