-
Notifications
You must be signed in to change notification settings - Fork 847
Expand file tree
/
Copy pathStyles.Windows.axaml
More file actions
87 lines (87 loc) · 6.44 KB
/
Copy pathStyles.Windows.axaml
File metadata and controls
87 lines (87 loc) · 6.44 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Styles xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Styles.Resources>
<ResourceDictionary>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Key="Dark">
<!-- Settings cards -->
<SolidColorBrush x:Key="SettingsCardBackground" Color="#222534"/>
<SolidColorBrush x:Key="SettingsCardBorderBrush" Color="#3a3a3a"/>
<SolidColorBrush x:Key="SettingsCardHoverBackground" Color="#2e3448"/>
<!-- Window structure -->
<SolidColorBrush x:Key="AppWindowBackground" Color="#191b29"/>
<SolidColorBrush x:Key="AppTitleBarBackground" Color="#191b29"/>
<SolidColorBrush x:Key="AppSplitterBackground" Color="#14161a"/>
<SolidColorBrush x:Key="AppOperationsPanelBackground" Color="#16181c"/>
<SolidColorBrush x:Key="AppBorderBrush" Color="#323439"/>
<SolidColorBrush x:Key="AppBadgeBackground" Color="#3c3e44"/>
<!-- Dialogs -->
<SolidColorBrush x:Key="AppDialogBackground" Color="#191b29"/>
<SolidColorBrush x:Key="AppDialogPanelBackground" Color="#2a2d34"/>
<SolidColorBrush x:Key="AppDialogSubtleBackground" Color="#3a3d44"/>
<SolidColorBrush x:Key="AppDialogDarkBackground" Color="#12141a"/>
<!-- Warning banner -->
<SolidColorBrush x:Key="WarningBannerBackground" Color="#3d2800"/>
<SolidColorBrush x:Key="WarningBannerBorderBrush" Color="#7a5200"/>
<SolidColorBrush x:Key="WarningBannerIconBackground" Color="#f0a500"/>
<SolidColorBrush x:Key="WarningBannerIconForeground" Color="#1a1000"/>
<SolidColorBrush x:Key="WarningBannerSubtext" Color="#ffe082"/>
<!-- Status banners (success / error / info) -->
<SolidColorBrush x:Key="StatusSuccessBackground" Color="#1a3d1a"/>
<SolidColorBrush x:Key="StatusSuccessBorderBrush" Color="#2e6b2e"/>
<SolidColorBrush x:Key="StatusErrorBackground" Color="#3d1a1a"/>
<SolidColorBrush x:Key="StatusErrorBorderBrush" Color="#6b2e2e"/>
<SolidColorBrush x:Key="StatusInfoBackground" Color="#1a2035"/>
<SolidColorBrush x:Key="StatusInfoBorderBrush" Color="#2e3a60"/>
<!-- Status badge foreground -->
<SolidColorBrush x:Key="StatusSuccessForeground" Color="#66bb6a"/>
<SolidColorBrush x:Key="StatusWarningForeground" Color="#ffe082"/>
<SolidColorBrush x:Key="StatusErrorForeground" Color="#ef9a9a"/>
<!-- Setting warning subtext -->
<SolidColorBrush x:Key="SettingWarningTextForeground" Color="#ffc107"/>
<!-- Operation log output text -->
<SolidColorBrush x:Key="LogOutputVerboseForeground" Color="#9D9D9D"/>
</ResourceDictionary>
<ResourceDictionary x:Key="Light">
<!-- Settings cards -->
<SolidColorBrush x:Key="SettingsCardBackground" Color="#fbfbfd"/>
<SolidColorBrush x:Key="SettingsCardBorderBrush" Color="#eff0f3"/>
<SolidColorBrush x:Key="SettingsCardHoverBackground" Color="#f5f6f9"/>
<!-- Window structure -->
<SolidColorBrush x:Key="AppWindowBackground" Color="#f0f3f9"/>
<SolidColorBrush x:Key="AppTitleBarBackground" Color="#f0f3f9"/>
<SolidColorBrush x:Key="AppSplitterBackground" Color="#d8d8d8"/>
<SolidColorBrush x:Key="AppOperationsPanelBackground" Color="#f8f8f8"/>
<SolidColorBrush x:Key="AppBorderBrush" Color="#cccccc"/>
<SolidColorBrush x:Key="AppBadgeBackground" Color="#e0e0e0"/>
<!-- Dialogs -->
<SolidColorBrush x:Key="AppDialogBackground" Color="#ffffff"/>
<SolidColorBrush x:Key="AppDialogPanelBackground" Color="#f5f5f5"/>
<SolidColorBrush x:Key="AppDialogSubtleBackground" Color="#ebebeb"/>
<SolidColorBrush x:Key="AppDialogDarkBackground" Color="#e8e8e8"/>
<!-- Warning banner -->
<SolidColorBrush x:Key="WarningBannerBackground" Color="#fff8e1"/>
<SolidColorBrush x:Key="WarningBannerBorderBrush" Color="#d4a700"/>
<SolidColorBrush x:Key="WarningBannerIconBackground" Color="#f0a500"/>
<SolidColorBrush x:Key="WarningBannerIconForeground" Color="#1a1000"/>
<SolidColorBrush x:Key="WarningBannerSubtext" Color="#7a4f00"/>
<!-- Status banners (success / error / info) -->
<SolidColorBrush x:Key="StatusSuccessBackground" Color="#e8f5e9"/>
<SolidColorBrush x:Key="StatusSuccessBorderBrush" Color="#4caf50"/>
<SolidColorBrush x:Key="StatusErrorBackground" Color="#ffebee"/>
<SolidColorBrush x:Key="StatusErrorBorderBrush" Color="#f44336"/>
<SolidColorBrush x:Key="StatusInfoBackground" Color="#e3f2fd"/>
<SolidColorBrush x:Key="StatusInfoBorderBrush" Color="#1976d2"/>
<!-- Status badge foreground -->
<SolidColorBrush x:Key="StatusSuccessForeground" Color="#2e7d32"/>
<SolidColorBrush x:Key="StatusWarningForeground" Color="#7a4f00"/>
<SolidColorBrush x:Key="StatusErrorForeground" Color="#c62828"/>
<!-- Setting warning subtext -->
<SolidColorBrush x:Key="SettingWarningTextForeground" Color="#a05c00"/>
<!-- Operation log output text -->
<SolidColorBrush x:Key="LogOutputVerboseForeground" Color="#5C5C5C"/>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>
</Styles.Resources>
</Styles>