TheGreatUnknown commited on
Commit
a499918
·
verified ·
1 Parent(s): 9a02038

Create config.js

Browse files
Files changed (1) hide show
  1. config.js +45 -0
config.js ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Configuration values for the charts and visualization
2
+ export const chartConfig = {
3
+ // Theme colors
4
+ theme: {
5
+ primary: 'rgba(75, 192, 192, 0.8)',
6
+ secondary: 'rgba(255, 99, 132, 0.8)',
7
+ highlight: 'rgba(54, 162, 235, 0.8)',
8
+ background: 'rgba(0, 0, 0, 0.8)',
9
+ text: 'rgba(255, 255, 255, 0.9)',
10
+ grid: 'rgba(255, 255, 255, 0.1)',
11
+ glow: '0 0 10px rgba(75, 192, 192, 0.5)'
12
+ },
13
+
14
+ // Potential data configuration
15
+ potentialData: {
16
+ labels: [0.75, 0.79, 0.82, 0.85, 0.9],
17
+ values: [0.78, 0.8410, 0.7940, 0.82, 0.88],
18
+ unstablePoint: {
19
+ x: 0.79,
20
+ y: 0.8410,
21
+ label: 'Unstable: ∂V/∂t = 5.8000'
22
+ },
23
+ stablePoint: {
24
+ x: 0.82,
25
+ y: 0.7940,
26
+ label: 'Stable Vacuum'
27
+ }
28
+ },
29
+
30
+ // Gauge coupling data configuration
31
+ gaugeCouplingData: {
32
+ labels: [0.75, 0.79, 0.82, 0.85, 0.9],
33
+ values: [5, 5.5, 4.5, 4.8, 4.2],
34
+ stablePoint: {
35
+ x: 0.82,
36
+ y: 4.5,
37
+ label: 'Stable g'
38
+ },
39
+ higherPoint: {
40
+ x: 0.75,
41
+ y: 5,
42
+ label: 'Higher g'
43
+ }
44
+ }
45
+ };