File size: 1,052 Bytes
a499918
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// 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'
    }
  }
};