code_style: add comment for ColorPicker.COLOR_TABLE

This commit is contained in:
leo 2024-09-11 09:38:32 +08:00
parent 3cebff6722
commit f314da54aa
No known key found for this signature in database

View file

@ -18,10 +18,10 @@ namespace SourceGit.Views
set => SetValue(ValueProperty, value); set => SetValue(ValueProperty, value);
} }
// Values are copied from Avalonia: src/Avalonia.Controls.ColorPicker/ColorPalettes/FluentColorPalette.cs
private static readonly Color[,] COLOR_TABLE = new Color[,] private static readonly Color[,] COLOR_TABLE = new Color[,]
{ {
{ {
// Ordering reversed for this section only
Color.FromArgb(255, 255, 67, 67), /* #FF4343 */ Color.FromArgb(255, 255, 67, 67), /* #FF4343 */
Color.FromArgb(255, 209, 52, 56), /* #D13438 */ Color.FromArgb(255, 209, 52, 56), /* #D13438 */
Color.FromArgb(255, 239, 105, 80), /* #EF6950 */ Color.FromArgb(255, 239, 105, 80), /* #EF6950 */