@adlas/create-app 1.0.29 → 1.0.30

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": "@adlas/create-app",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "Adlas project initializer with Figma and Swagger integration",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",
@@ -1,7 +1,7 @@
1
1
  @import "tailwindcss";
2
2
  @plugin './hero.ts';
3
- @source '../../node_modules/@heroui/theme/dist';
4
-
3
+ /* Note: You may need to change the path to fit your project structure */
4
+ @source '../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}';
5
5
  @custom-variant dark (&:is(.dark *));
6
6
 
7
7
  /*
@@ -1,86 +1,5 @@
1
1
  // hero.ts
2
- import { heroui } from '@heroui/react';
3
-
4
- export default heroui({
5
- themes: {
6
- light: {
7
- colors: {
8
- background: {
9
- DEFAULT: '#FFFFFF',
10
- },
11
- foreground: {
12
- DEFAULT: '#000000',
13
- },
14
- primary: {
15
- DEFAULT: '#000000',
16
- },
17
- secondary: {},
18
- default: {
19
- 50: '#FAFAFA',
20
- 100: '#F4F4F5',
21
- 200: '#E4E4E7',
22
- 300: '#D1D1D6',
23
- 400: '#A0A0AB',
24
- 500: '#70707B',
25
- 600: '#51525C',
26
- 700: '#3F3F46',
27
- 800: '#26272B',
28
- 900: '#18181B',
29
- DEFAULT: '#18181B',
30
- },
31
- success: {
32
- 50: '#d4f4dd',
33
- 100: '#aae9bb',
34
- 200: '#7fde99',
35
- 300: '#54d377',
36
- 400: '#2ac855',
37
- 500: '#22a043',
38
- 600: '#1a7833',
39
- 700: '#135022',
40
- 800: '#0b2811',
41
- 900: '#041008',
42
- DEFAULT: '#22a043',
43
- },
44
- warning: {
45
- 50: '#fef9c3',
46
- 100: '#fef9c3',
47
- 200: '#fef08a',
48
- 300: '#fde047',
49
- 400: '#facc15',
50
- 500: '#eab308',
51
- 600: '#ca8a04',
52
- 700: '#a16207',
53
- 800: '#854d0e',
54
- 900: '#713f12',
55
- DEFAULT: '#eab308',
56
- },
57
- danger: {
58
- 50: '#fef2f2',
59
- 100: '#fee2e2',
60
- 200: '#fecaca',
61
- 300: '#fca5a5',
62
- 400: '#f87171',
63
- 500: '#ef4444',
64
- 600: '#dc2626',
65
- 700: '#b91c1c',
66
- 800: '#991b1b',
67
- 900: '#7f1d1d',
68
- DEFAULT: '#ef4444',
69
- },
70
- focus: 'transparent',
71
- },
72
- layout: {
73
- radius: {
74
- small: '',
75
- medium: '',
76
- large: '',
77
- },
78
- borderWidth: {
79
- small: '1px',
80
- medium: '2px',
81
- large: '3px',
82
- },
83
- },
84
- },
85
- },
86
- });
2
+ import { heroui } from "@heroui/react";
3
+ // or import from theme package if you are using individual packages.
4
+ // import { heroui } from "@heroui/theme";
5
+ export default heroui();