Skip to content

Instantly share code, notes, and snippets.

@somapatrik
Created August 26, 2022 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save somapatrik/963a0a83904c8df4d02051655614afe9 to your computer and use it in GitHub Desktop.
Save somapatrik/963a0a83904c8df4d02051655614afe9 to your computer and use it in GitHub Desktop.
<Color x:Key="Primary">#0b5ed7</Color>
<Color x:Key="GridBackground">#4F000000</Color>
<Color x:Key="NexenColor">#9d1c9d</Color>
<Color x:Key="SomaDarkDark">#22272e</Color>
<Color x:Key="SomaDarkLight">#434c57</Color>
<Color x:Key="GithubDark">#24292f</Color>
<Color x:Key="GithubLight">#f6f8fa</Color>
<Color x:Key="GithubRed">#cf222e</Color>
<Color x:Key="GithubGreen">#2da44e</Color>
<Color x:Key="BootstrapWarningBg">#ffc107</Color>
<Style x:Key="GreenButton" TargetType="Button">
<Setter Property="BackgroundColor" Value="#2da44e"/>
<Setter Property="BorderColor" Value="#2a9047"/>
<Setter Property="TextColor" Value="white"/>
<Setter Property="BorderWidth" Value="2"/>
<Setter Property="CornerRadius" Value="7"/>
</Style>
<Style x:Key="BlueButton" TargetType="Button">
<Setter Property="BackgroundColor" Value="{StaticResource Primary}"/>
<Setter Property="BorderColor" Value="#0a58ca"/>
<Setter Property="TextColor" Value="white"/>
<Setter Property="BorderWidth" Value="2"/>
<Setter Property="CornerRadius" Value="7"/>
</Style>
<Style x:Key="GreenImageButton" TargetType="ImageButton">
<Setter Property="BackgroundColor" Value="#2da44e"/>
<Setter Property="BorderColor" Value="#2a9047"/>
<Setter Property="BorderWidth" Value="2"/>
<Setter Property="CornerRadius" Value="7"/>
</Style>
<Style x:Key="DarkButtonGithub" TargetType="Button">
<Setter Property="BackgroundColor" Value="#373e47"/>
<Setter Property="BorderColor" Value="#464e58"/>
<Setter Property="TextColor" Value="white"/>
<Setter Property="BorderWidth" Value="2"/>
<Setter Property="CornerRadius" Value="7"/>
</Style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment