Spaces:
Running
Running
Create config.js
Browse files
config.js
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export const config = {
|
2 |
+
// Duration of transitions in seconds
|
3 |
+
transitionTime: 1.5,
|
4 |
+
|
5 |
+
// Colors for each stage
|
6 |
+
colors: {
|
7 |
+
intimate: '#f8d568', // Golden yellow
|
8 |
+
universal: '#6e9bd2', // Soft blue
|
9 |
+
divine: '#c98fff' // Lavender purple
|
10 |
+
},
|
11 |
+
|
12 |
+
// Background properties
|
13 |
+
background: {
|
14 |
+
opacity: 0.4,
|
15 |
+
blurAmount: '10px'
|
16 |
+
},
|
17 |
+
|
18 |
+
// Auto progression settings
|
19 |
+
autoProgress: {
|
20 |
+
enabled: false,
|
21 |
+
interval: 8000 // Time in ms between auto-progression
|
22 |
+
}
|
23 |
+
};
|
24 |
+
|