TheKersalMassive / ReskinPS5

A PS5 Reskin for Playnite
31 stars 3 forks source link

Change custom values on ReskinPS5 #25

Closed anwar-alsilwy closed 2 years ago

anwar-alsilwy commented 2 years ago

Hi, First of all this is not issue. I like ReskinPS5 theme so much, thanks a lot, But I need to change somethings:

1- How can I make the border more thicker, what the value should I change ( using Notepad++); border

2- How can I make background more brightness and clear the dim on background; background

TheKersalMassive commented 2 years ago
  1. Change the BorderThickness value under in the ListGameItemStyle.xaml file under DerivedStyles folder:

<Border x:Name="MainBorder" Opacity="0" BorderThickness="3" CornerRadius="3" Style="{DynamicResource AnimatedCoverBrush}" Tag="False" Visibility="Collapsed" >

  1. Delete the below code in GameDetails.xaml under the Views folder:
                        <Border Background="{DynamicResource GameDetailsOverlay}" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" Grid.RowSpan="3" >
                         <Border.Style>
                                <Style TargetType="Border">
                                    <Style.Triggers>
                                        <DataTrigger Binding="{Binding DisplayBackgroundImage}" Value="{x:Null}">
                                            <Setter Property="Visibility" Value="Collapsed" />
                                        </DataTrigger>
                                    </Style.Triggers>
                                </Style>
                            </Border.Style>
                        </Border>

Please note you will need to repeat these steps every time the theme is updated

anwar-alsilwy commented 2 years ago

WOW !!! Thank you so much for that. I will test it tomorrow.