-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
215 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
--- | ||
whiskers: | ||
version: "2.3.0" | ||
matrix: | ||
- flavor | ||
filename: "themes/Catppuccin {{ flavor.identifier | capitalize }}.xaml" | ||
--- | ||
<ResourceDictionary | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:system="clr-namespace:System;assembly=mscorlib"> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
<Thickness x:Key="ResultMargin">0 0 0 8</Thickness> | ||
<Style | ||
x:Key="ItemGlyph" | ||
BasedOn="{StaticResource BaseGlyphStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ text.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="QueryBoxStyle" | ||
BasedOn="{StaticResource BaseQueryBoxStyle}" | ||
TargetType="{x:Type TextBox}"> | ||
<Setter Property="FontSize" Value="24" /> | ||
<Setter Property="Foreground" Value="#{{ text.hex }}" /> | ||
<Setter Property="CaretBrush" Value="#{{ mauve.hex }}" /> | ||
<Setter Property="FontSize" Value="26" /> | ||
<Setter Property="Height" Value="42" /> | ||
<Setter Property="Padding" Value="0,0,0,0" /> | ||
</Style> | ||
<Style | ||
x:Key="QuerySuggestionBoxStyle" | ||
BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" | ||
TargetType="{x:Type TextBox}"> | ||
<Setter Property="Background" Value="#{{ mantle.hex }}" /> | ||
<Setter Property="Foreground" Value="#{{ surface1.hex }}" /> | ||
<Setter Property="FontSize" Value="26" /> | ||
<Setter Property="Height" Value="42" /> | ||
<Setter Property="Padding" Value="0,0,0,0" /> | ||
</Style> | ||
<Style | ||
x:Key="WindowBorderStyle" | ||
BasedOn="{StaticResource BaseWindowBorderStyle}" | ||
TargetType="{x:Type Border}"> | ||
<Setter Property="BorderThickness" Value="2" /> | ||
<Setter Property="BorderBrush" Value="#{{ if(cond=flavor.dark, t=surface0.hex, f=surface1.hex) }}" /> | ||
<Setter Property="CornerRadius" Value="12" /> | ||
<Setter Property="Background" Value="#{{ mantle.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="WindowStyle" | ||
BasedOn="{StaticResource BaseWindowStyle}" | ||
TargetType="{x:Type Window}"> | ||
<Setter Property="Width" Value="576" /> | ||
<Setter Property="RenderOptions.ClearTypeHint" Value="Enabled" /> | ||
</Style> | ||
|
||
<Style | ||
x:Key="PendingLineStyle" | ||
BasedOn="{StaticResource BasePendingLineStyle}" | ||
TargetType="{x:Type Line}"> | ||
<Setter Property="Stroke" Value="#{{ green.hex }}" /> | ||
</Style> | ||
|
||
<!-- Item Style --> | ||
<Style | ||
x:Key="ItemTitleStyle" | ||
BasedOn="{StaticResource BaseItemTitleStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ if(cond=flavor.dark, t=subtext0.hex, f=text.hex) }}" /> | ||
</Style> | ||
<Style | ||
x:Key="ItemSubTitleStyle" | ||
BasedOn="{StaticResource BaseItemSubTitleStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ if(cond=flavor.dark, t=overlay0.hex, f=text.hex) }}" /> | ||
<Setter Property="FontSize" Value="13" /> | ||
</Style> | ||
<Style | ||
x:Key="ItemNumberStyle" | ||
BasedOn="{StaticResource BaseItemNumberStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ surface1.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="ItemTitleSelectedStyle" | ||
BasedOn="{StaticResource BaseItemTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Cursor" Value="Arrow" /> | ||
<Setter Property="Foreground" Value="#{{ text.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="ItemSubTitleSelectedStyle" | ||
BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Cursor" Value="Arrow" /> | ||
<Setter Property="Foreground" Value="#{{ blue.hex }}" /> | ||
</Style> | ||
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#{{ if(cond=flavor.dark, t=base.hex, f=surface0.hex) }}</SolidColorBrush> | ||
<CornerRadius x:Key="ItemRadius">8</CornerRadius> | ||
<Thickness x:Key="ItemMargin">10 0 10 0</Thickness> | ||
<Style | ||
x:Key="ItemImageSelectedStyle" | ||
BasedOn="{StaticResource BaseItemImageSelectedStyle}" | ||
TargetType="{x:Type Image}"> | ||
<Setter Property="Cursor" Value="Arrow" /> | ||
</Style> | ||
<Style x:Key="HighlightStyle"> | ||
<Setter Property="Inline.Foreground" Value="#{{ mauve.hex }}" /> | ||
<Setter Property="Inline.FontWeight" Value="Bold" /> | ||
</Style> | ||
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="FontSize" Value="13" /> | ||
<Setter Property="Foreground" Value="#{{ overlay0.hex }}" /> | ||
</Style> | ||
<Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}"> | ||
<Setter Property="FontSize" Value="13" /> | ||
<Setter Property="Foreground" Value="#{{ blue.hex }}" /> | ||
</Style> | ||
<!-- button style in the middle of the scrollbar --> | ||
<Style | ||
x:Key="ThumbStyle" | ||
BasedOn="{StaticResource BaseThumbStyle}" | ||
TargetType="{x:Type Thumb}"> | ||
<Setter Property="SnapsToDevicePixels" Value="True" /> | ||
<Setter Property="OverridesDefaultStyle" Value="true" /> | ||
<Setter Property="IsTabStop" Value="false" /> | ||
<Setter Property="Width" Value="2" /> | ||
<Setter Property="Focusable" Value="false" /> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type Thumb}"> | ||
<Border | ||
Background="#{{ surface0.hex }}" | ||
BorderBrush="Transparent" | ||
BorderThickness="0" | ||
CornerRadius="2" | ||
DockPanel.Dock="Right" /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
<Style | ||
x:Key="ScrollBarStyle" | ||
BasedOn="{StaticResource BaseScrollBarStyle}" | ||
TargetType="{x:Type ScrollBar}" /> | ||
<Style | ||
x:Key="SeparatorStyle" | ||
BasedOn="{StaticResource BaseSeparatorStyle}" | ||
TargetType="{x:Type Rectangle}"> | ||
<Setter Property="Fill" Value="#{{ if(cond=flavor.dark, t=base.hex, f=surface0.hex) }}" /> | ||
<Setter Property="Height" Value="2" /> | ||
<Setter Property="Margin" Value="10,0,10,8" /> | ||
</Style> | ||
<Style | ||
x:Key="SearchIconStyle" | ||
BasedOn="{StaticResource BaseSearchIconStyle}" | ||
TargetType="{x:Type Path}"> | ||
<Setter Property="Fill" Value="#{{ if(cond=flavor.dark, t=surface1.hex, f=text.hex) }}" /> | ||
<Setter Property="Width" Value="32" /> | ||
<Setter Property="Height" Value="32" /> | ||
</Style> | ||
<Style | ||
x:Key="ClockBox" | ||
BasedOn="{StaticResource BaseClockBox}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ if(cond=flavor.dark, t=blue.hex, f=text.hex) }}" /> | ||
</Style> | ||
<Style | ||
x:Key="DateBox" | ||
BasedOn="{StaticResource BaseDateBox}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ if(cond=flavor.dark, t=blue.hex, f=text.hex) }}" /> | ||
</Style> | ||
<Style | ||
x:Key="PreviewBorderStyle" | ||
BasedOn="{StaticResource BasePreviewBorderStyle}" | ||
TargetType="{x:Type Border}"> | ||
<Setter Property="BorderBrush" Value="#{{ base.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="PreviewItemTitleStyle" | ||
BasedOn="{StaticResource BasePreviewItemTitleStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ blue.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="PreviewItemSubTitleStyle" | ||
BasedOn="{StaticResource BasePreviewItemSubTitleStyle}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ surface1.hex }}" /> | ||
</Style> | ||
<Style | ||
x:Key="PreviewGlyph" | ||
BasedOn="{StaticResource BasePreviewGlyph}" | ||
TargetType="{x:Type TextBlock}"> | ||
<Setter Property="Foreground" Value="#{{ blue.hex }}" /> | ||
</Style> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
_default: | ||
@just --list | ||
|
||
build: | ||
whiskers flow-launcher.tera |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters