TheGreatUnknown's picture
Create config.js
a499918 verified
// Configuration values for the charts and visualization
export const chartConfig = {
// Theme colors
theme: {
primary: 'rgba(75, 192, 192, 0.8)',
secondary: 'rgba(255, 99, 132, 0.8)',
highlight: 'rgba(54, 162, 235, 0.8)',
background: 'rgba(0, 0, 0, 0.8)',
text: 'rgba(255, 255, 255, 0.9)',
grid: 'rgba(255, 255, 255, 0.1)',
glow: '0 0 10px rgba(75, 192, 192, 0.5)'
},
// Potential data configuration
potentialData: {
labels: [0.75, 0.79, 0.82, 0.85, 0.9],
values: [0.78, 0.8410, 0.7940, 0.82, 0.88],
unstablePoint: {
x: 0.79,
y: 0.8410,
label: 'Unstable: ∂V/∂t = 5.8000'
},
stablePoint: {
x: 0.82,
y: 0.7940,
label: 'Stable Vacuum'
}
},
// Gauge coupling data configuration
gaugeCouplingData: {
labels: [0.75, 0.79, 0.82, 0.85, 0.9],
values: [5, 5.5, 4.5, 4.8, 4.2],
stablePoint: {
x: 0.82,
y: 4.5,
label: 'Stable g'
},
higherPoint: {
x: 0.75,
y: 5,
label: 'Higher g'
}
}
};