test / config.js
TheGreatUnknown's picture
Create config.js
ca52358 verified
raw
history blame contribute delete
498 Bytes
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
}
};