diff --git a/src/cubing/puzzle-geometry/colors.ts b/src/cubing/puzzle-geometry/colors.ts index a22f24008..6357ae909 100644 --- a/src/cubing/puzzle-geometry/colors.ts +++ b/src/cubing/puzzle-geometry/colors.ts @@ -7,11 +7,11 @@ export enum PGColors { Yellow = "#f4f400", Purple = "#8800dd", - Gray = "#aaaaaa", + LightGray = "#aaaaaa", Cream = "#e8d0a0", Pink = "#ff66cc", - DarkBlue = "#0000ff", + BoldBlue = "#0000ff", Aqua = "#3399ff", DarkGreen = "#008800", Lime = "#99ff00", @@ -20,7 +20,7 @@ export enum PGColors { Brown = "#7d3b11", Lavender = "#b9a1ff", SeaGreen = "#5ec4b6", - VeryDarkGray = "#292929", + harcoal = "#292929", Burgundy = "#980000", Cerise = "#d41f69", } @@ -51,7 +51,7 @@ export function defaultPlatonicColorSchemes(): any { BB: PGColors.Blue, L: PGColors.Purple, BL: PGColors.Orange, - BR: PGColors.Gray, + BR: PGColors.DarkGray, }, 12: { U: PGColors.White, @@ -62,10 +62,10 @@ export function defaultPlatonicColorSchemes(): any { L: PGColors.Purple, E: PGColors.Pink, BF: PGColors.Lime, - BR: PGColors.DarkBlue, + BR: PGColors.BoldBlue, BL: PGColors.Yellow, I: PGColors.Orange, - D: PGColors.Gray, + D: PGColors.LightGray, }, 20: { R: PGColors.Yellow, @@ -82,12 +82,12 @@ export function defaultPlatonicColorSchemes(): any { J: PGColors.SeaGreen, B: PGColors.Green, K: PGColors.Cream, - D: PGColors.Gray, + D: PGColors.LightGray, M: PGColors.Pink, - O: PGColors.VeryDarkGray, + O: PGColors.harcoal, P: PGColors.Orange, N: PGColors.Burgundy, - Q: PGColors.Blue, + Q: PGColors.BoldBlue, }, }; }