@@ -10,12 +10,30 @@ function getColors(theme) {
10
10
11
11
switch ( theme ) {
12
12
case "light" :
13
+
14
+ // Temp override until Primitives are updated
15
+ lightColors . success . emphasis = "#1f883d" ;
16
+ lightColors . btn . primary . bg = lightColors . success . emphasis ;
17
+ lightColors . btn . primary . hoverBg = lightColors . scale . green [ 5 ] ;
18
+ lightColors . fg . default = "#1f2328" ;
19
+ lightColors . fg . muted = "#656d76" ;
20
+
13
21
return lightColors ;
14
22
case "light_high_contrast" :
15
23
return lightHighContrastColors ;
16
24
case "light_colorblind" :
17
25
return lightColorblindColors ;
18
26
case "dark" :
27
+
28
+ // Temp override until Primitives are updated
29
+ darkColors . fg . default = "#e6edf3" ;
30
+ darkColors . fg . muted = "#7d8590" ;
31
+ darkColors . accent . fg = "#2f81f7" ;
32
+ darkColors . severe . subtle = "rgba(219, 109, 40, 0.1)" ;
33
+ darkColors . danger . subtle = "rgba(248, 81, 73, 0.1)" ;
34
+ darkColors . done . subtle = "rgba(163, 113, 247, 0.1)" ;
35
+ darkColors . sponsors . subtle = "rgba(219, 97, 162, 0.1)" ;
36
+
19
37
return darkColors ;
20
38
case "dark_high_contrast" :
21
39
return darkHighContrastColors ;
0 commit comments