@remyyy/create-velox 0.0.15 → 0.0.17

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": "@remyyy/create-velox",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "author": "TheRemyyy",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@ function Dashboard() {
22
22
  </h1>
23
23
  <p style={{ color: 'var(--color-text-secondary)', fontSize: '1.1rem', maxWidth: '600px' }}>
24
24
  You are running a production-ready template optimized for speed.
25
- Start editing <code>src/App.js</code> to build your next big idea.
25
+ Start editing <code>src/App.jsx</code> to build your next big idea.
26
26
  </p>
27
27
  </section>
28
28
 
@@ -1,16 +1,16 @@
1
1
  :root {
2
2
  --font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
3
-
4
- --color-bg: #09090b;
5
- --color-surface: #18181b;
6
- --color-surface-hover: #27272a;
7
- --color-border: #27272a;
8
-
9
- --color-text-primary: #f4f4f5;
10
- --color-text-secondary: #a1a1aa;
11
-
12
- --color-primary: #f97316;
13
- --color-primary-glow: rgba(249, 115, 22, 0.5);
3
+
4
+ --color-bg: #0f172a;
5
+ --color-surface: #1e293b;
6
+ --color-surface-hover: #334155;
7
+ --color-border: #334155;
8
+
9
+ --color-text-primary: #f8fafc;
10
+ --color-text-secondary: #94a3b8;
11
+
12
+ --color-primary: #8b5cf6;
13
+ --color-primary-glow: rgba(139, 92, 246, 0.5);
14
14
  }
15
15
 
16
16
  * {
@@ -62,14 +62,14 @@ button:hover {
62
62
  }
63
63
 
64
64
  .layout {
65
- max-width: 1200px;
66
- margin: 0 auto;
67
- padding: 2rem;
65
+ max-width: 1200px;
66
+ margin: 0 auto;
67
+ padding: 2rem;
68
68
  }
69
69
 
70
70
  .grid {
71
- display: grid;
72
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
73
- gap: 1.5rem;
74
- margin-top: 2rem;
75
- }
71
+ display: grid;
72
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
73
+ gap: 1.5rem;
74
+ margin-top: 2rem;
75
+ }
@@ -1,82 +1,75 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
- line-height: 1.5;
4
- font-weight: 400;
2
+ --font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
5
3
 
6
- color-scheme: light dark;
7
- color: rgba(255, 255, 255, 0.87);
8
- background-color: #242424;
4
+ --color-bg: #0f172a;
5
+ --color-surface: #1e293b;
6
+ --color-surface-hover: #334155;
7
+ --color-border: #334155;
9
8
 
10
- font-synthesis: none;
11
- text-rendering: optimizeLegibility;
12
- -webkit-font-smoothing: antialiased;
13
- -moz-osx-font-smoothing: grayscale;
9
+ --color-text-primary: #f8fafc;
10
+ --color-text-secondary: #94a3b8;
11
+
12
+ --color-primary: #8b5cf6;
13
+ --color-primary-glow: rgba(139, 92, 246, 0.5);
14
+ }
15
+
16
+ * {
17
+ box-sizing: border-box;
18
+ margin: 0;
19
+ padding: 0;
14
20
  }
15
21
 
16
22
  body {
17
23
  margin: 0;
18
- display: flex;
19
- justify-content: center;
20
- align-items: center;
21
24
  min-width: 320px;
22
25
  min-height: 100vh;
23
- text-align: center;
24
- }
25
-
26
- #app {
27
- width: 100%;
28
- max-width: 1280px;
29
- padding: 2rem;
30
- margin: 0 auto;
31
- display: flex;
32
- flex-direction: column;
33
- align-items: center;
34
- }
35
-
36
- .app-container {
37
- display: flex;
38
- flex-direction: column;
39
- align-items: center;
40
- justify-content: center;
41
- width: 100%;
26
+ background-color: var(--color-bg);
27
+ color: var(--color-text-primary);
28
+ font-family: var(--font-family);
29
+ line-height: 1.5;
30
+ font-synthesis: none;
31
+ text-rendering: optimizeLegibility;
32
+ -webkit-font-smoothing: antialiased;
42
33
  }
43
34
 
44
- .card {
45
- padding: 2em;
35
+ a {
36
+ font-weight: 500;
37
+ color: var(--color-primary);
38
+ text-decoration: none;
39
+ transition: opacity 0.2s;
46
40
  }
47
41
 
48
- .read-the-docs {
49
- color: #888;
42
+ a:hover {
43
+ opacity: 0.8;
50
44
  }
51
45
 
52
46
  button {
53
47
  border-radius: 8px;
54
- border: 1px solid transparent;
48
+ border: 1px solid var(--color-border);
55
49
  padding: 0.6em 1.2em;
56
50
  font-size: 1em;
57
51
  font-weight: 500;
58
52
  font-family: inherit;
59
- background-color: #1a1a1a;
53
+ background-color: var(--color-surface);
54
+ color: var(--color-text-primary);
60
55
  cursor: pointer;
61
- transition: border-color 0.25s;
56
+ transition: all 0.25s;
62
57
  }
63
58
 
64
59
  button:hover {
65
- border-color: #646cff;
60
+ border-color: var(--color-primary);
61
+ background-color: var(--color-surface-hover);
66
62
  }
67
63
 
68
- button:focus,
69
- button:focus-visible {
70
- outline: 4px auto -webkit-focus-ring-color;
64
+ .layout {
65
+ max-width: 1200px;
66
+ margin: 0 auto;
67
+ padding: 2rem;
71
68
  }
72
69
 
73
- @media (prefers-color-scheme: light) {
74
- :root {
75
- color: #213547;
76
- background-color: #ffffff;
77
- }
78
-
79
- button {
80
- background-color: #f9f9f9;
81
- }
70
+ .grid {
71
+ display: grid;
72
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
73
+ gap: 1.5rem;
74
+ margin-top: 2rem;
82
75
  }