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