-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFunColor.cs
87 lines (73 loc) · 4.21 KB
/
FunColor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using Microsoft.Maui.Graphics;
namespace FunColors;
// All the code in this file is included in all platforms.
public static class FunColor
{
// Brand colors
public static Color DotNetPurple2024 => Color.FromUint(0xFF512BD4);
public static Color XamarinBlue2011 => Color.FromUint(0xFF5596D8);
public static Color AndroidBotGreen2024 => Color.FromUint(0xFFA7CD45);
// Childhood toys
public static Color RubberDuckYellow => Color.FromUint(0xFFFFD700);
public static Color GameBoyGreen => Color.FromUint(0xFF9BBC0F);
public static Color BarbiePink => Color.FromUint(0xFFDA1884);
public static Color PotatoHeadBrown => Color.FromUint(0xFF8B4513);
public static Color TickleMeElmoRed => Color.FromUint(0xFFFF3F3F);
public static Color LegoRed => Color.FromUint(0xFFB40000);
public static Color HotWheelsBlue => Color.FromUint(0xFF005BAC);
public static Color NerfOrange => Color.FromUint(0xFFFF6F00);
public static Color PlayDohYellow => Color.FromUint(0xFFFBE870);
public static Color MyLittlePonyPurple => Color.FromUint(0xFFDDA0DD);
public static Color TransformersSilver => Color.FromUint(0xFFC0C0C0);
public static Color GIJoeGreen => Color.FromUint(0xFF4B5320);
public static Color PowerRangersRed => Color.FromUint(0xFFFF0000);
public static Color TeenageMutantNinjaTurtlesGreen => Color.FromUint(0xFF008000);
public static Color CareBearsRainbow => Color.FromUint(0xFFFF69B4);
// PC Manufacturer Colors from `70s and `80s
public static Color AppleIIBeige => Color.FromUint(0xFFD3D3D3);
public static Color Commodore64Brown => Color.FromUint(0xFF6C4F3D);
public static Color Atari800Blue => Color.FromUint(0xFF0057A0);
public static Color IBMPCGray => Color.FromUint(0xFF808080);
public static Color TRS80Silver => Color.FromUint(0xFFC0C0C0);
public static Color ZXSpectrumBlack => Color.FromUint(0xFF000000);
public static Color AmigaWhite => Color.FromUint(0xFFFFFFFF);
public static Color MSXBlue => Color.FromUint(0xFF0000FF);
// CharliXCX 4 life
public static Color BratSummer => Color.FromUint(0xFF8ACE00);
public static Color BratAutumn => Color.FromUint(0xFFFF8C00);
// Neon and pain
/// <summary>
/// NeonElectricBlue is the color of a hyperactive blueberry that just discovered energy drinks.
/// Pair with NeonVividMagenta to create a vibrant, energetic, panic-inducing color scheme.
/// </summary>
public static Color NeonElectricBlue => Color.FromUint(0xFF154FEE);
/// <summary>
/// NeonVividMagenta is the color of a party-loving flamingo that refuses to leave the dance floor.
/// Pair with NeonElectricBlue to create a vibrant, energetic, panic-inducing color scheme.
/// </summary>
public static Color NeonVividMagenta => Color.FromUint(0xFFFF08FC);
/// <summary>
/// PukePink is the color of that bubblegum shade you regret eating too much of, resulting in a not-so-pleasant aftermath.
/// Pairs best with MushyPeas, perfect for catching attention.
/// </summary>
public static Color PukePink => Color.FromUint(0xFFFF3AC6);
/// <summary>
/// MushyPeas is the color of those squishy, green peas that somehow always end up on the side of your plate at family dinners.
/// Pairs best with PukePink, perfect for catching attention.
/// </summary>
public static Color MushyPeas => Color.FromUint(0xFF5FA41C);
/// <summary>
/// PainfulRed is the color that screams "Warning! Danger ahead!" and makes your eyes feel like they're running a marathon.
/// Pairs best with ShrekGreen, ensuring your design will never go unnoticed.
/// </summary>
public static Color PainfulRed => Color.FromUint(0xFFFF1A00);
/// <summary>
/// ShrekGreen is the color of a swamp-loving ogre who insists on keeping his lawn immaculate.
/// Pairs best with PainfulRed, ensuring your design will never go unnoticed.
/// </summary>
// shrek
public static Color ShrekGreen => Color.FromUint(0xFF009B00);
// Beyoncé Gold
public static Color BeyonceGold=> Color.FromUint(0xBF8C4E);
public static Color BeyHiveYellow=> Color.FromUint(0xF2C230);
}