Skip to content

Commit 629e7ab

Browse files
committed
Adjust Color
1 parent 212565a commit 629e7ab

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

Flow.Launcher/Resources/Dark.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
7070
<SolidColorBrush x:Key="ContextSeparator" Color="#3c3c3c" />
7171

72+
<SolidColorBrush x:Key="HoverStoreGrid2">#272727</SolidColorBrush>
73+
7274
<Color x:Key="Color01">#202020</Color>
7375
<Color x:Key="Color02">#2b2b2b</Color>
7476
<Color x:Key="Color03">#1d1d1d</Color>

Flow.Launcher/Resources/Light.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@
6262
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
6363
<SolidColorBrush x:Key="ContextSeparator" Color="#dadada" />
6464

65+
<SolidColorBrush x:Key="HoverStoreGrid2">#f6f6f6</SolidColorBrush>
66+
6567
<Color x:Key="Color01">#f3f3f3</Color>
6668
<Color x:Key="Color02">#ffffff</Color>
6769
<Color x:Key="Color03">#e5e5e5</Color>

Flow.Launcher/SettingWindow.xaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@
358358
<MultiTrigger.Conditions>
359359
<Condition Property="IsSelected" Value="True" />
360360
</MultiTrigger.Conditions>
361-
<Setter TargetName="Bd" Property="Background" Value="{DynamicResource Color07B}" />
361+
<Setter TargetName="Bd" Property="Background" Value="{DynamicResource HoverStoreGrid2}" />
362362
<Setter TargetName="Bd" Property="BorderBrush" Value="{DynamicResource Color03B}" />
363363
<Setter TargetName="Bd" Property="CornerRadius" Value="5" />
364364
<Setter TargetName="Bd" Property="Margin" Value="0,0,0,0" />
@@ -367,7 +367,7 @@
367367
<MultiTrigger.Conditions>
368368
<Condition Property="IsMouseOver" Value="True" />
369369
</MultiTrigger.Conditions>
370-
<Setter TargetName="Bd" Property="Background" Value="{DynamicResource Color07B}" />
370+
<Setter TargetName="Bd" Property="Background" Value="{DynamicResource HoverStoreGrid2}" />
371371
<Setter TargetName="Bd" Property="BorderBrush" Value="{DynamicResource Color03B}" />
372372
<Setter TargetName="Bd" Property="CornerRadius" Value="5" />
373373

@@ -1463,7 +1463,7 @@
14631463
Grid.Row="1"
14641464
Grid.Column="0"
14651465
Grid.ColumnSpan="2"
1466-
Margin="0,2,0,0"
1466+
Margin="5,2,0,0"
14671467
Padding="0,0,18,0"
14681468
ItemContainerStyle="{StaticResource StoreList}"
14691469
ItemsSource="{Binding ExternalPlugins}"
@@ -1497,10 +1497,11 @@
14971497
<Grid>
14981498
<StackPanel Orientation="Vertical">
14991499
<TextBlock
1500-
Margin="0,0,0,10"
1500+
Margin="2,0,0,10"
15011501
VerticalAlignment="Top"
15021502
FontSize="16"
15031503
FontWeight="Bold"
1504+
Foreground="{DynamicResource Color05B}"
15041505
Text="{Binding Name, Converter={StaticResource TextConverter}}" />
15051506

15061507
<ItemsPresenter />
@@ -1581,10 +1582,13 @@
15811582
ToolTip="{Binding Version}" />
15821583
<TextBlock
15831584
Grid.Column="0"
1584-
Margin="18,10,18,10"
1585+
Height="60"
1586+
Margin="18,6,18,0"
1587+
Padding="0,0,0,10"
15851588
FontSize="12"
15861589
Foreground="{DynamicResource Color04B}"
15871590
Text="{Binding Description, Mode=OneWay}"
1591+
TextTrimming="WordEllipsis"
15881592
TextWrapping="Wrap" />
15891593
</StackPanel>
15901594

0 commit comments

Comments
 (0)