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:
parent
3934634f04
commit
014e825182
2 changed files with 9 additions and 8 deletions
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue