1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00

Align fields in ColorsList.cs

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2023-06-09 18:55:38 +05:00
parent 3934634f04
commit 014e825182
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
2 changed files with 9 additions and 8 deletions

View file

@ -58,6 +58,7 @@ resharper_indent_nested_usings_stmt = true
resharper_indent_nested_while_stmt = true resharper_indent_nested_while_stmt = true
resharper_indent_preprocessor_if = usual_indent resharper_indent_preprocessor_if = usual_indent
resharper_indent_preprocessor_other = usual_indent resharper_indent_preprocessor_other = usual_indent
resharper_int_align_fields = true
resharper_int_align_methods = true resharper_int_align_methods = true
resharper_int_align_parameters = true resharper_int_align_parameters = true
resharper_int_align_properties = true resharper_int_align_properties = true

View file

@ -1,18 +1,18 @@
using System.Drawing; using System.Drawing;
// ReSharper disable UnusedMember.Global
// TODO: remove this when all colors are used // TODO: remove this when all colors are used
// ReSharper disable UnusedMember.Global
namespace Boyfriend; namespace Boyfriend;
public static class ColorsList { public static class ColorsList {
public static readonly Color Default = Color.Gray; public static readonly Color Default = Color.Gray;
public static readonly Color Red = Color.Firebrick; public static readonly Color Red = Color.Firebrick;
public static readonly Color Green = Color.PaleGreen; public static readonly Color Green = Color.PaleGreen;
public static readonly Color Yellow = Color.Gold; public static readonly Color Yellow = Color.Gold;
public static readonly Color Blue = Color.RoyalBlue; public static readonly Color Blue = Color.RoyalBlue;
public static readonly Color Magenta = Color.Orchid; public static readonly Color Magenta = Color.Orchid;
public static readonly Color Cyan = Color.LightSkyBlue; public static readonly Color Cyan = Color.LightSkyBlue;
public static readonly Color Black = Color.Black; public static readonly Color Black = Color.Black;
public static readonly Color White = Color.WhiteSmoke; public static readonly Color White = Color.WhiteSmoke;
} }