forked from WXRIW/Lyricify-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DarkTheme.xaml
60 lines (53 loc) · 3.48 KB
/
DarkTheme.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!-- Name: 默认深色配色主题 -->
<!-- Description: 这个配置文件包含了 Lyricify 4 默认深色配色主题的颜色配置。 -->
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- 主背景色 -->
<SolidColorBrush Color="#121212" x:Key="Brush.Spotify.Background"/>
<Color x:Key="Color.Spotify.Background">#121212</Color>
<!-- 主前景色 -->
<SolidColorBrush Color="#FFFFFF" x:Key="Brush.Spotify.Foreground"/>
<!-- 副标题颜色 (如左下角艺人名) -->
<SolidColorBrush Color="#B3B3B3" x:Key="Brush.Spotify.Subtitle"/>
<!-- Spotify 绿 -->
<SolidColorBrush Color="#1ED760" x:Key="Brush.Spotify.Green"/>
<SolidColorBrush Color="#169141" x:Key="Brush.Spotify.Green.Dark"/>
<!-- 时长文本的颜色 (如进度条两侧的时长) -->
<SolidColorBrush Color="#A7A7A7" x:Key="Brush.Spotify.Duration"/>
<!-- 图片的默认背景 -->
<SolidColorBrush Color="#333333" x:Key="Brush.Spotify.Default.Image.Background"/>
<!-- Spotify Icons 的默认背景 -->
<SolidColorBrush Color="#535353" x:Key="Brush.Spotify.Icon.Background"/>
<SolidColorBrush Color="#282828" x:Key="Brush.Spotify.Icon.Big.Background"/>
<SolidColorBrush Color="#7F7F7F" x:Key="Brush.Spotify.Icon.Big.Foreground"/>
<!-- Explicit 标的颜色 -->
<SolidColorBrush Color="#A7A7A7" x:Key="Brush.Spotify.Explicit.Background"/>
<SolidColorBrush Color="#121212" x:Key="Brush.Spotify.Explicit.Foreground"/>
<!-- 用户小组件的相关颜色 (窗口右上角的用户框) -->
<SolidColorBrush Color="#282828" x:Key="Brush.Spotify.UserWidget.Background"/>
<SolidColorBrush Color="#3E3E3E" x:Key="Brush.Spotify.UserWidget.Menu.Item.Background"/>
<SolidColorBrush Color="#3E3E3E" x:Key="Brush.Spotify.UserWidget.Menu.Splitline"/>
<!-- 阴影颜色 (如页面里的专辑、歌单图片) -->
<Color x:Key="Color.Spotify.Shadow">#000000</Color>
<!-- 导航栏背景色 -->
<SolidColorBrush Color="#000000" x:Key="Brush.Spotify.NavigationBar"/>
<!-- Spotify Connect 浮窗的背景色 -->
<SolidColorBrush Color="#282828" x:Key="Brush.Spotify.SpotifyConnect.Background"/>
<!-- 下方控制区域 -->
<SolidColorBrush Color="#181818" x:Key="Brush.Spotify.Control.Background"/>
<SolidColorBrush Color="#282828" x:Key="Brush.Spotify.Control.SplitLine"/>
<SolidColorBrush Color="White" x:Key="Brush.Spotify.Control.PlayButton.Background"/>
<SolidColorBrush Color="Black" x:Key="Brush.Spotify.Control.PlayButton.Foreground"/>
<SolidColorBrush Color="White" x:Key="Brush.Spotify.Control.Button.Foreground"/>
<!-- 播放进度条 -->
<SolidColorBrush Color="White" x:Key="Brush.Spotify.Control.Slider.Background"/>
<SolidColorBrush Color="#1DB954" x:Key="Brush.Spotify.Control.Slider.MouseOn"/>
<Color x:Key="Brush.Spotify.Control.Slider.Shadow">Black</Color>
<!-- 按钮 -->
<SolidColorBrush Color="#1ED760" x:Key="Brush.Spotify.Button.Green.Normal"/>
<SolidColorBrush Color="#1FDF64" x:Key="Brush.Spotify.Button.Green.MouseOn"/>
<SolidColorBrush Color="#169C46" x:Key="Brush.Spotify.Button.Green.Pressed"/>
<SolidColorBrush Color="#FF000000" x:Key="Brush.Spotify.Button.PlayPause"/>
<SolidColorBrush Color="#FFFFFFFF" x:Key="Brush.Spotify.Button.PlayPause.Reversed"/>
<SolidColorBrush Color="#B2000000" x:Key="Brush.Spotify.Frame.Navigation.Button.Background"/>
</ResourceDictionary>