Change default annotation options

This commit is contained in:
Jaex 2017-06-16 13:30:38 +03:00
parent ca6a600898
commit 19a56571a8
2 changed files with 8 additions and 8 deletions

View file

@ -30,7 +30,7 @@ namespace ShareX.ScreenCaptureLib
public class AnnotationOptions public class AnnotationOptions
{ {
public static readonly string DefaultFont = "Arial"; public static readonly string DefaultFont = "Arial";
public static readonly Color PrimaryColor = Color.Red; public static readonly Color PrimaryColor = Color.FromArgb(242, 60, 60);
public static readonly Color SecondaryColor = Color.White; public static readonly Color SecondaryColor = Color.White;
public static readonly Color TransparentColor = Color.FromArgb(0, 0, 0, 0); public static readonly Color TransparentColor = Color.FromArgb(0, 0, 0, 0);
@ -39,7 +39,7 @@ public class AnnotationOptions
// Drawing // Drawing
public Color BorderColor { get; set; } = PrimaryColor; public Color BorderColor { get; set; } = PrimaryColor;
public int BorderSize { get; set; } = 5; public int BorderSize { get; set; } = 4;
public Color FillColor { get; set; } = TransparentColor; public Color FillColor { get; set; } = TransparentColor;
public int DrawingCornerRadius { get; set; } = 3; public int DrawingCornerRadius { get; set; } = 3;
public bool Shadow { get; set; } = true; public bool Shadow { get; set; } = true;
@ -47,12 +47,12 @@ public class AnnotationOptions
// Text (Outline) drawing // Text (Outline) drawing
public TextDrawingOptions TextOutlineOptions { get; set; } = new TextDrawingOptions() public TextDrawingOptions TextOutlineOptions { get; set; } = new TextDrawingOptions()
{ {
Color = PrimaryColor, Color = SecondaryColor,
Size = 25, Size = 25,
Bold = true Bold = true
}; };
public Color TextOutlineBorderColor { get; set; } = SecondaryColor; public Color TextOutlineBorderColor { get; set; } = PrimaryColor;
public int TextOutlineBorderSize { get; set; } = 3; public int TextOutlineBorderSize { get; set; } = 5;
// Text (Background) drawing // Text (Background) drawing
public TextDrawingOptions TextOptions { get; set; } = new TextDrawingOptions() public TextDrawingOptions TextOptions { get; set; } = new TextDrawingOptions()
@ -61,12 +61,12 @@ public class AnnotationOptions
Size = 18 Size = 18
}; };
public Color TextBorderColor { get; set; } = SecondaryColor; public Color TextBorderColor { get; set; } = SecondaryColor;
public int TextBorderSize { get; set; } = 2; public int TextBorderSize { get; set; } = 0;
public Color TextFillColor { get; set; } = PrimaryColor; public Color TextFillColor { get; set; } = PrimaryColor;
// Step drawing // Step drawing
public Color StepBorderColor { get; set; } = SecondaryColor; public Color StepBorderColor { get; set; } = SecondaryColor;
public int StepBorderSize { get; set; } = 2; public int StepBorderSize { get; set; } = 0;
public Color StepFillColor { get; set; } = PrimaryColor; public Color StepFillColor { get; set; } = PrimaryColor;
// Blur effect // Blur effect

View file

@ -1,7 +1,7 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15 # Visual Studio 15
VisualStudioVersion = 15.0.26403.7 VisualStudioVersion = 15.0.26430.6
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShareX", "ShareX\ShareX.csproj", "{C5AE4585-E9EC-4FA3-B75A-E1210635ACB6}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShareX", "ShareX\ShareX.csproj", "{C5AE4585-E9EC-4FA3-B75A-E1210635ACB6}"
ProjectSection(ProjectDependencies) = postProject ProjectSection(ProjectDependencies) = postProject