Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/FlowForge.UI/App.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Application.Styles>
<FluentTheme />
<StyleInclude Source="avares://Nodify.Avalonia/Themes/Controls.xaml" />
<StyleInclude Source="avares://FlowForge.UI/Themes/MidnightTheme.axaml" />
<StyleInclude Source="avares://FlowForge.UI/Themes/MoltenForgeTheme.axaml" />
</Application.Styles>

<Application.Resources>
Expand Down
20 changes: 10 additions & 10 deletions src/FlowForge.UI/MainWindow.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
Width="1200" Height="700"
MinWidth="800" MinHeight="500"
Icon="avares://FlowForge.UI/Assets/icon.png"
FontSize="14"
Background="{DynamicResource MidnightBg}"
FontSize="13"
Background="{DynamicResource ForgeBg}"
KeyDown="OnKeyDown">

<Grid RowDefinitions="Auto,*,Auto,180">
<Grid RowDefinitions="Auto,*,Auto,185">
<!-- Toolbar (row 0) -->
<views:ToolbarView Grid.Row="0"
DataContext="{Binding}" />
Expand All @@ -25,18 +25,18 @@
<DockPanel Grid.Row="1">
<!-- Node library (left) -->
<Border DockPanel.Dock="Left"
Width="200"
Background="{DynamicResource MidnightPanel}"
BorderBrush="{DynamicResource MidnightBorder}"
Width="250"
Background="{DynamicResource ForgePanel}"
BorderBrush="{DynamicResource ForgeBorder}"
BorderThickness="0,0,1,0">
<views:NodeLibraryView DataContext="{Binding NodeLibrary}" />
</Border>

<!-- Properties panel (right) -->
<Border DockPanel.Dock="Right"
Width="250"
Background="{DynamicResource MidnightPanel}"
BorderBrush="{DynamicResource MidnightBorder}"
Width="290"
Background="{DynamicResource ForgePanel}"
BorderBrush="{DynamicResource ForgeBorder}"
BorderThickness="1,0,0,0">
<views:PropertiesView DataContext="{Binding Properties}" />
</Border>
Expand All @@ -49,7 +49,7 @@
<GridSplitter Grid.Row="2"
Height="4"
HorizontalAlignment="Stretch"
Background="{DynamicResource MidnightBorder}"
Background="{DynamicResource ForgeBorder}"
ResizeDirection="Rows" />

<!-- Output panel (row 3) -->
Expand Down
193 changes: 0 additions & 193 deletions src/FlowForge.UI/Themes/MidnightTheme.axaml

This file was deleted.

Loading