cronixui 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +582 -0
  3. package/package.json +10 -7
  4. package/packages/react/src/components/Accordion.jsx +50 -0
  5. package/packages/react/src/components/Alert.jsx +62 -0
  6. package/packages/react/src/components/Avatar.jsx +34 -0
  7. package/packages/react/src/components/Badge.jsx +15 -0
  8. package/packages/react/src/components/Breadcrumb.jsx +27 -0
  9. package/packages/react/src/components/Button.jsx +21 -0
  10. package/packages/react/src/components/Card.jsx +23 -0
  11. package/packages/react/src/components/Checkbox.jsx +27 -0
  12. package/packages/react/src/components/CommandPalette.jsx +93 -0
  13. package/packages/react/src/components/Dropdown.jsx +48 -0
  14. package/packages/react/src/components/FileInput.jsx +44 -0
  15. package/packages/react/src/components/Input.jsx +22 -0
  16. package/packages/react/src/components/List.jsx +29 -0
  17. package/packages/react/src/components/Modal.jsx +65 -0
  18. package/packages/react/src/components/Nav.jsx +50 -0
  19. package/packages/react/src/components/Pagination.jsx +81 -0
  20. package/packages/react/src/components/Progress.jsx +23 -0
  21. package/packages/react/src/components/Radio.jsx +50 -0
  22. package/packages/react/src/components/Search.jsx +70 -0
  23. package/packages/react/src/components/Select.jsx +33 -0
  24. package/packages/react/src/components/Skeleton.jsx +15 -0
  25. package/packages/react/src/components/Slider.jsx +29 -0
  26. package/packages/react/src/components/Spinner.jsx +5 -0
  27. package/packages/react/src/components/Stat.jsx +19 -0
  28. package/packages/react/src/components/Table.jsx +48 -0
  29. package/packages/react/src/components/Tabs.jsx +65 -0
  30. package/packages/react/src/components/Tag.jsx +19 -0
  31. package/packages/react/src/components/Textarea.jsx +17 -0
  32. package/packages/react/src/components/Toast.jsx +78 -0
  33. package/packages/react/src/components/Toggle.jsx +34 -0
  34. package/packages/react/src/components/Tooltip.jsx +12 -0
  35. package/packages/react/src/index.js +33 -0
  36. package/packages/win/CronixUI.WinUI/Controls/FlAvatar.cs +39 -0
  37. package/packages/win/CronixUI.WinUI/Controls/FlBadge.cs +21 -0
  38. package/packages/win/CronixUI.WinUI/Controls/FlButton.cs +30 -0
  39. package/packages/win/CronixUI.WinUI/Controls/FlCard.cs +21 -0
  40. package/packages/win/CronixUI.WinUI/Controls/FlCheckBox.cs +12 -0
  41. package/packages/win/CronixUI.WinUI/Controls/FlComboBox.cs +12 -0
  42. package/packages/win/CronixUI.WinUI/Controls/FlModal.cs +34 -0
  43. package/packages/win/CronixUI.WinUI/Controls/FlNavigation.cs +12 -0
  44. package/packages/win/CronixUI.WinUI/Controls/FlProgressBar.cs +21 -0
  45. package/packages/win/CronixUI.WinUI/Controls/FlRadioButton.cs +12 -0
  46. package/packages/win/CronixUI.WinUI/Controls/FlSlider.cs +12 -0
  47. package/packages/win/CronixUI.WinUI/Controls/FlSpinner.cs +21 -0
  48. package/packages/win/CronixUI.WinUI/Controls/FlTabs.cs +12 -0
  49. package/packages/win/CronixUI.WinUI/Controls/FlTextBox.cs +21 -0
  50. package/packages/win/CronixUI.WinUI/Controls/FlToggle.cs +12 -0
  51. package/packages/win/CronixUI.WinUI/Controls/FlTooltip.cs +21 -0
  52. package/packages/win/CronixUI.WinUI/CronixUI.WinUI.csproj +21 -0
  53. package/packages/win/CronixUI.WinUI/CronixUI.WinUI.sln +33 -0
  54. package/packages/win/CronixUI.WinUI/Themes/FlAvatar.xaml +39 -0
  55. package/packages/win/CronixUI.WinUI/Themes/FlBadge.xaml +30 -0
  56. package/packages/win/CronixUI.WinUI/Themes/FlButton.xaml +36 -0
  57. package/packages/win/CronixUI.WinUI/Themes/FlCard.xaml +28 -0
  58. package/packages/win/CronixUI.WinUI/Themes/FlCheckBox.xaml +45 -0
  59. package/packages/win/CronixUI.WinUI/Themes/FlComboBox.xaml +70 -0
  60. package/packages/win/CronixUI.WinUI/Themes/FlModal.xaml +47 -0
  61. package/packages/win/CronixUI.WinUI/Themes/FlProgressBar.xaml +27 -0
  62. package/packages/win/CronixUI.WinUI/Themes/FlRadioButton.xaml +42 -0
  63. package/packages/win/CronixUI.WinUI/Themes/FlSlider.xaml +38 -0
  64. package/packages/win/CronixUI.WinUI/Themes/FlSpinner.xaml +13 -0
  65. package/packages/win/CronixUI.WinUI/Themes/FlTextBox.xaml +39 -0
  66. package/packages/win/CronixUI.WinUI/Themes/FlToggle.xaml +45 -0
  67. package/packages/win/CronixUI.WinUI/Themes/FlTooltip.xaml +31 -0
  68. package/packages/win/CronixUI.WinUI/Themes/Generic.xaml +163 -0
  69. /package/{dist → packages/web/dist}/cronixui.css +0 -0
  70. /package/{dist → packages/web/dist}/cronixui.js +0 -0
  71. /package/{dist → packages/web/dist}/cronixui.min.css +0 -0
  72. /package/{dist → packages/web/dist}/cronixui.min.js +0 -0
  73. /package/{src → packages/web/src}/cronixui.css +0 -0
  74. /package/{src → packages/web/src}/cronixui.js +0 -0
  75. /package/{src → packages/web/src}/variables.css +0 -0
@@ -0,0 +1,38 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns:local="using:CronixUI.Controls">
5
+
6
+ <Style TargetType="local:CnSlider">
7
+ <Setter Property="FontFamily" Value="{StaticResource CnFontFamily}"/>
8
+ <Setter Property="Background" Value="{StaticResource CnSurface3Brush}"/>
9
+ <Setter Property="Foreground" Value="{StaticResource CnAccentBrush}"/>
10
+ <Setter Property="Template">
11
+ <Setter.Value>
12
+ <ControlTemplate TargetType="local:CnSlider">
13
+ <Grid>
14
+ <Rectangle x:Name="Track"
15
+ Fill="{TemplateBinding Background}"
16
+ Height="4"
17
+ RadiusX="2"
18
+ RadiusY="2"/>
19
+ <Rectangle x:Name="Fill"
20
+ Fill="{TemplateBinding Foreground}"
21
+ Height="4"
22
+ RadiusX="2"
23
+ RadiusY="2"
24
+ HorizontalAlignment="Left"/>
25
+ <Ellipse x:Name="Thumb"
26
+ Width="16"
27
+ Height="16"
28
+ Fill="{StaticResource CnTextBrush}"
29
+ Stroke="{TemplateBinding Foreground}"
30
+ StrokeThickness="2"
31
+ HorizontalAlignment="Left"/>
32
+ </Grid>
33
+ </ControlTemplate>
34
+ </Setter.Value>
35
+ </Setter>
36
+ </Style>
37
+
38
+ </ResourceDictionary>
@@ -0,0 +1,13 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns:local="using:CronixUI.Controls">
5
+
6
+ <Style TargetType="local:CnSpinner">
7
+ <Setter Property="Width" Value="24"/>
8
+ <Setter Property="Height" Value="24"/>
9
+ <Setter Property="Foreground" Value="{StaticResource CnAccentBrush}"/>
10
+ <Setter Property="IsActive" Value="True"/>
11
+ </Style>
12
+
13
+ </ResourceDictionary>
@@ -0,0 +1,39 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns:local="using:CronixUI.Controls">
5
+
6
+ <Style TargetType="local:CnTextBox">
7
+ <Setter Property="FontFamily" Value="{StaticResource CnFontFamily}"/>
8
+ <Setter Property="FontSize" Value="{StaticResource CnTextBase}"/>
9
+ <Setter Property="Foreground" Value="{StaticResource CnTextBrush}"/>
10
+ <Setter Property="Background" Value="{StaticResource CnSurfaceBrush}"/>
11
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
12
+ <Setter Property="BorderThickness" Value="1"/>
13
+ <Setter Property="CornerRadius" Value="{StaticResource CnRadius}"/>
14
+ <Setter Property="Padding" Value="12,8"/>
15
+ <Setter Property="Template">
16
+ <Setter.Value>
17
+ <ControlTemplate TargetType="local:CnTextBox">
18
+ <Border x:Name="BorderElement"
19
+ Background="{TemplateBinding Background}"
20
+ BorderBrush="{TemplateBinding BorderBrush}"
21
+ BorderThickness="{TemplateBinding BorderThickness}"
22
+ CornerRadius="{TemplateBinding CornerRadius}">
23
+ <ScrollViewer x:Name="ContentElement"
24
+ HorizontalScrollMode="Auto"
25
+ VerticalScrollMode="Auto"
26
+ HorizontalScrollBarVisibility="Hidden"
27
+ VerticalScrollBarVisibility="Hidden"
28
+ IsTabStop="False"
29
+ ZoomMode="Disabled"
30
+ HorizontalAlignment="Left"
31
+ VerticalAlignment="Center"
32
+ Margin="{TemplateBinding Padding}"/>
33
+ </Border>
34
+ </ControlTemplate>
35
+ </Setter.Value>
36
+ </Setter>
37
+ </Style>
38
+
39
+ </ResourceDictionary>
@@ -0,0 +1,45 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns:local="using:CronixUI.Controls">
5
+
6
+ <Style TargetType="local:CnToggle">
7
+ <Setter Property="Width" Value="40"/>
8
+ <Setter Property="Height" Value="22"/>
9
+ <Setter Property="Background" Value="{StaticResource CnSurface3Brush}"/>
10
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
11
+ <Setter Property="BorderThickness" Value="1"/>
12
+ <Setter Property="CornerRadius" Value="11"/>
13
+ <Setter Property="Template">
14
+ <Setter.Value>
15
+ <ControlTemplate TargetType="local:CnToggle">
16
+ <Grid>
17
+ <Border x:Name="TrackBorder"
18
+ Width="40"
19
+ Height="22"
20
+ Background="{TemplateBinding Background}"
21
+ BorderBrush="{TemplateBinding BorderBrush}"
22
+ BorderThickness="{TemplateBinding BorderThickness}"
23
+ CornerRadius="11">
24
+ <Grid>
25
+ <Ellipse x:Name="Knob"
26
+ Width="16"
27
+ Height="16"
28
+ Fill="{StaticResource CnTextMutedBrush}"
29
+ HorizontalAlignment="Left"
30
+ VerticalAlignment="Center"
31
+ Margin="2,0,0,0"
32
+ RenderTransformOrigin="0.5,0.5">
33
+ <Ellipse.RenderTransform>
34
+ <TranslateTransform x:Name="KnobTransform"/>
35
+ </Ellipse.RenderTransform>
36
+ </Ellipse>
37
+ </Grid>
38
+ </Border>
39
+ </Grid>
40
+ </ControlTemplate>
41
+ </Setter.Value>
42
+ </Setter>
43
+ </Style>
44
+
45
+ </ResourceDictionary>
@@ -0,0 +1,31 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns:local="using:CronixUI.Controls">
5
+
6
+ <Style TargetType="local:CnTooltip">
7
+ <Setter Property="FontFamily" Value="{StaticResource CnFontFamily}"/>
8
+ <Setter Property="FontSize" Value="{StaticResource CnTextXs}"/>
9
+ <Setter Property="Foreground" Value="{StaticResource CnTextBrush}"/>
10
+ <Setter Property="Template">
11
+ <Setter.Value>
12
+ <ControlTemplate TargetType="local:CnTooltip">
13
+ <Grid>
14
+ <ContentPresenter x:Name="ContentPresenter"/>
15
+ <Popup x:Name="TooltipPopup"
16
+ VerticalOffset="-40">
17
+ <Border Background="{StaticResource CnSurface3Brush}"
18
+ BorderBrush="{StaticResource CnBorderBrush}"
19
+ BorderThickness="1"
20
+ CornerRadius="{StaticResource CnRadiusSm}"
21
+ Padding="8,4">
22
+ <ContentPresenter Content="{TemplateBinding TooltipContent}"/>
23
+ </Border>
24
+ </Popup>
25
+ </Grid>
26
+ </ControlTemplate>
27
+ </Setter.Value>
28
+ </Setter>
29
+ </Style>
30
+
31
+ </ResourceDictionary>
@@ -0,0 +1,163 @@
1
+ <ResourceDictionary
2
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
4
+
5
+ <!-- Colors -->
6
+ <Color x:Key="CnBackgroundColor">#0a0a0a</Color>
7
+ <Color x:Key="CnSurfaceColor">#111111</Color>
8
+ <Color x:Key="CnSurface2Color">#1a1a1a</Color>
9
+ <Color x:Key="CnSurface3Color">#222222</Color>
10
+ <Color x:Key="CnSurface4Color">#2a2a2a</Color>
11
+
12
+ <Color x:Key="CnAccentColor">#6b2323</Color>
13
+ <Color x:Key="CnAccentHoverColor">#7d2a2a</Color>
14
+ <Color x:Key="CnAccentLightColor">#8a3535</Color>
15
+ <Color x:Key="CnAccentTextColor">#c97a7a</Color>
16
+
17
+ <Color x:Key="CnTextColor">#f0ede8</Color>
18
+ <Color x:Key="CnTextMutedColor">#80f0ede8</Color>
19
+ <Color x:Key="CnTextDimColor">#40f0ede8</Color>
20
+
21
+ <Color x:Key="CnSuccessColor">#1e5028</Color>
22
+ <Color x:Key="CnSuccessTextColor">#6bc47a</Color>
23
+ <Color x:Key="CnWarningColor">#503c14</Color>
24
+ <Color x:Key="CnWarningTextColor">#c4a43a</Color>
25
+ <Color x:Key="CnErrorColor">#501414</Color>
26
+ <Color x:Key="CnErrorTextColor">#c46b6b</Color>
27
+ <Color x:Key="CnInfoColor">#143550</Color>
28
+ <Color x:Key="CnInfoTextColor">#6ba8c4</Color>
29
+
30
+ <!-- Brushes -->
31
+ <SolidColorBrush x:Key="CnBackgroundBrush" Color="{StaticResource CnBackgroundColor}"/>
32
+ <SolidColorBrush x:Key="CnSurfaceBrush" Color="{StaticResource CnSurfaceColor}"/>
33
+ <SolidColorBrush x:Key="CnSurface2Brush" Color="{StaticResource CnSurface2Color}"/>
34
+ <SolidColorBrush x:Key="CnSurface3Brush" Color="{StaticResource CnSurface3Color}"/>
35
+ <SolidColorBrush x:Key="CnSurface4Brush" Color="{StaticResource CnSurface4Color}"/>
36
+
37
+ <SolidColorBrush x:Key="CnAccentBrush" Color="{StaticResource CnAccentColor}"/>
38
+ <SolidColorBrush x:Key="CnAccentHoverBrush" Color="{StaticResource CnAccentHoverColor}"/>
39
+ <SolidColorBrush x:Key="CnAccentLightBrush" Color="{StaticResource CnAccentLightColor}"/>
40
+ <SolidColorBrush x:Key="CnAccentTextBrush" Color="{StaticResource CnAccentTextColor}"/>
41
+
42
+ <SolidColorBrush x:Key="CnTextBrush" Color="{StaticResource CnTextColor}"/>
43
+ <SolidColorBrush x:Key="CnTextMutedBrush" Color="{StaticResource CnTextMutedColor}"/>
44
+ <SolidColorBrush x:Key="CnTextDimBrush" Color="{StaticResource CnTextDimColor}"/>
45
+
46
+ <SolidColorBrush x:Key="CnBorderBrush" Color="#15FFFFFF"/>
47
+ <SolidColorBrush x:Key="CnBorderHoverBrush" Color="#25FFFFFF"/>
48
+ <SolidColorBrush x:Key="CnBorderFocusBrush" Color="#40FFFFFF"/>
49
+
50
+ <SolidColorBrush x:Key="CnSuccessBrush" Color="{StaticResource CnSuccessColor}"/>
51
+ <SolidColorBrush x:Key="CnSuccessTextBrush" Color="{StaticResource CnSuccessTextColor}"/>
52
+ <SolidColorBrush x:Key="CnWarningBrush" Color="{StaticResource CnWarningColor}"/>
53
+ <SolidColorBrush x:Key="CnWarningTextBrush" Color="{StaticResource CnWarningTextColor}"/>
54
+ <SolidColorBrush x:Key="CnErrorBrush" Color="{StaticResource CnErrorColor}"/>
55
+ <SolidColorBrush x:Key="CnErrorTextBrush" Color="{StaticResource CnErrorTextColor}"/>
56
+ <SolidColorBrush x:Key="CnInfoBrush" Color="{StaticResource CnInfoColor}"/>
57
+ <SolidColorBrush x:Key="CnInfoTextBrush" Color="{StaticResource CnInfoTextColor}"/>
58
+
59
+ <!-- Typography -->
60
+ <FontFamily x:Key="CnFontFamily">Segoe UI</FontFamily>
61
+ <FontFamily x:Key="CnFontMonoFamily">Consolas</FontFamily>
62
+
63
+ <x:Double x:Key="CnTextXs">11</x:Double>
64
+ <x:Double x:Key="CnTextSm">12</x:Double>
65
+ <x:Double x:Key="CnTextBase">13</x:Double>
66
+ <x:Double x:Key="CnTextMd">14</x:Double>
67
+ <x:Double x:Key="CnTextLg">16</x:Double>
68
+ <x:Double x:Key="CnTextXl">20</x:Double>
69
+ <x:Double x:Key="CnText2xl">28</x:Double>
70
+ <x:Double x:Key="CnText3xl">36</x:Double>
71
+
72
+ <!-- Spacing -->
73
+ <x:Double x:Key="CnSpace1">4</x:Double>
74
+ <x:Double x:Key="CnSpace2">8</x:Double>
75
+ <x:Double x:Key="CnSpace3">12</x:Double>
76
+ <x:Double x:Key="CnSpace4">16</x:Double>
77
+ <x:Double x:Key="CnSpace5">20</x:Double>
78
+ <x:Double x:Key="CnSpace6">24</x:Double>
79
+ <x:Double x:Key="CnSpace8">32</x:Double>
80
+ <x:Double x:Key="CnSpace10">40</x:Double>
81
+ <x:Double x:Key="CnSpace12">48</x:Double>
82
+
83
+ <!-- Border Radius -->
84
+ <CornerRadius x:Key="CnRadiusSm">6</CornerRadius>
85
+ <CornerRadius x:Key="CnRadius">10</CornerRadius>
86
+ <CornerRadius x:Key="CnRadiusLg">14</CornerRadius>
87
+ <CornerRadius x:Key="CnRadiusXl">20</CornerRadius>
88
+
89
+ <!-- Button Styles -->
90
+ <Style x:Key="CnButton" TargetType="Button">
91
+ <Setter Property="FontFamily" Value="{StaticResource CnFontFamily}"/>
92
+ <Setter Property="FontSize" Value="{StaticResource CnTextBase}"/>
93
+ <Setter Property="Foreground" Value="{StaticResource CnTextBrush}"/>
94
+ <Setter Property="Background" Value="{StaticResource CnSurface2Brush}"/>
95
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
96
+ <Setter Property="BorderThickness" Value="1"/>
97
+ <Setter Property="Padding" Value="8,6"/>
98
+ <Setter Property="CornerRadius" Value="{StaticResource CnRadius}"/>
99
+ <Setter Property="HorizontalAlignment" Value="Left"/>
100
+ <Setter Property="VerticalAlignment" Value="Center"/>
101
+ </Style>
102
+
103
+ <Style x:Key="CnButtonPrimary" TargetType="Button" BasedOn="{StaticResource CnButton}">
104
+ <Setter Property="Background" Value="{StaticResource CnAccentBrush}"/>
105
+ <Setter Property="BorderBrush" Value="{StaticResource CnAccentBrush}"/>
106
+ </Style>
107
+
108
+ <Style x:Key="CnButtonGhost" TargetType="Button" BasedOn="{StaticResource CnButton}">
109
+ <Setter Property="Background" Value="Transparent"/>
110
+ <Setter Property="BorderBrush" Value="Transparent"/>
111
+ </Style>
112
+
113
+ <Style x:Key="CnButtonDanger" TargetType="Button" BasedOn="{StaticResource CnButton}">
114
+ <Setter Property="Background" Value="{StaticResource CnErrorBrush}"/>
115
+ <Setter Property="BorderBrush" Value="{StaticResource CnErrorBrush}"/>
116
+ </Style>
117
+
118
+ <!-- TextBox Styles -->
119
+ <Style x:Key="CnTextBox" TargetType="TextBox">
120
+ <Setter Property="FontFamily" Value="{StaticResource CnFontFamily}"/>
121
+ <Setter Property="FontSize" Value="{StaticResource CnTextBase}"/>
122
+ <Setter Property="Foreground" Value="{StaticResource CnTextBrush}"/>
123
+ <Setter Property="Background" Value="{StaticResource CnSurfaceBrush}"/>
124
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
125
+ <Setter Property="BorderThickness" Value="1"/>
126
+ <Setter Property="Padding" Value="12,8"/>
127
+ <Setter Property="CornerRadius" Value="{StaticResource CnRadius}"/>
128
+ </Style>
129
+
130
+ <!-- Card Style -->
131
+ <Style x:Key="CnCard" TargetType="Border">
132
+ <Setter Property="Background" Value="{StaticResource CnSurfaceBrush}"/>
133
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
134
+ <Setter Property="BorderThickness" Value="1"/>
135
+ <Setter Property="CornerRadius" Value="{StaticResource CnRadiusLg}"/>
136
+ <Setter Property="Padding" Value="20"/>
137
+ </Style>
138
+
139
+ <!-- ToggleButton Style -->
140
+ <Style x:Key="CnToggle" TargetType="ToggleButton">
141
+ <Setter Property="Width" Value="40"/>
142
+ <Setter Property="Height" Value="22"/>
143
+ <Setter Property="Background" Value="{StaticResource CnSurface3Brush}"/>
144
+ <Setter Property="BorderBrush" Value="{StaticResource CnBorderBrush}"/>
145
+ <Setter Property="BorderThickness" Value="1"/>
146
+ <Setter Property="CornerRadius" Value="11"/>
147
+ </Style>
148
+
149
+ <!-- ProgressBar Style -->
150
+ <Style x:Key="CnProgressBar" TargetType="ProgressBar">
151
+ <Setter Property="Height" Value="4"/>
152
+ <Setter Property="Background" Value="{StaticResource CnSurface3Brush}"/>
153
+ <Setter Property="Foreground" Value="{StaticResource CnAccentBrush}"/>
154
+ <Setter Property="CornerRadius" Value="2"/>
155
+ </Style>
156
+
157
+ <!-- Slider Style -->
158
+ <Style x:Key="CnSlider" TargetType="Slider">
159
+ <Setter Property="Background" Value="{StaticResource CnSurface3Brush}"/>
160
+ <Setter Property="Foreground" Value="{StaticResource CnAccentBrush}"/>
161
+ </Style>
162
+
163
+ </ResourceDictionary>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes