@@ -806,7 +806,7 @@ public static Texture2D ActiveBranchIcon
806
806
{
807
807
get
808
808
{
809
- return Utility . GetIcon ( "current-branch-indicator.png" , "[email protected] " ) ;
809
+ return Utility . GetIcon ( "current-branch-indicator.png" , "[email protected] " , Utility . IsDarkTheme ) ;
810
810
}
811
811
}
812
812
@@ -846,15 +846,15 @@ public static Texture2D SmallLogo
846
846
{
847
847
get
848
848
{
849
- return Utility . GetIcon ( "small-logo.png" ) ;
849
+ return Utility . IsDarkTheme ? Utility . GetIcon ( "small-logo-light.png" , "[email protected] " ) : Utility . GetIcon ( "small-logo.png" , "small-logo@2x .png") ;
850
850
}
851
851
}
852
852
853
853
public static Texture2D BigLogo
854
854
{
855
855
get
856
856
{
857
- return Utility . IsDarkTheme ? Utility . GetIcon ( "big-logo-light.png" ) : Utility . GetIcon ( "big-logo.png" ) ;
857
+ return Utility . IsDarkTheme ? Utility . GetIcon ( "big-logo-light.png" , "[email protected] " ) : Utility . GetIcon ( "big-logo.png" , "big-logo@2x .png") ;
858
858
}
859
859
}
860
860
@@ -870,15 +870,15 @@ public static Texture2D DotIcon
870
870
{
871
871
get
872
872
{
873
- return Utility . GetIcon ( "dot.png" , "[email protected] " ) ;
873
+ return Utility . GetIcon ( "dot.png" , "[email protected] " , Utility . IsDarkTheme ) ;
874
874
}
875
875
}
876
876
877
877
public static Texture2D LocalCommitIcon
878
878
{
879
879
get
880
880
{
881
- return Utility . GetIcon ( "local-commit-icon.png" , "[email protected] " ) ;
881
+ return Utility . GetIcon ( "local-commit-icon.png" , "[email protected] " , Utility . IsDarkTheme ) ;
882
882
}
883
883
}
884
884
@@ -894,7 +894,7 @@ public static Texture2D RepoIcon
894
894
{
895
895
get
896
896
{
897
- return Utility . GetIcon ( "repo.png" , "[email protected] " ) ;
897
+ return Utility . GetIcon ( "repo.png" , "[email protected] " , Utility . IsDarkTheme ) ;
898
898
}
899
899
}
900
900
@@ -908,10 +908,10 @@ public static Texture2D LockIcon
908
908
909
909
public static Texture2D EmptyStateInit
910
910
{
911
- get
912
- {
913
- return Utility . GetIcon ( "empty-state-init.png" , "[email protected] " ) ;
914
- }
911
+ get
912
+ {
913
+ return Utility . GetIcon ( "empty-state-init.png" , "[email protected] " ) ;
914
+ }
915
915
}
916
916
917
917
public static Texture2D DropdownListIcon
@@ -926,7 +926,7 @@ public static Texture2D GlobeIcon
926
926
{
927
927
get
928
928
{
929
- return Utility . GetIcon ( "globe.png" , "[email protected] " ) ;
929
+ return Utility . GetIcon ( "globe.png" , "[email protected] " , Utility . IsDarkTheme ) ;
930
930
}
931
931
}
932
932
0 commit comments