Update purplegray color token value to something darker and grayer

This commit is contained in:
Violet Caulfield
2025-01-25 07:43:51 -06:00
parent 06fbd73438
commit 7cba861dbb
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
export enum Colors {
Primary = "#cc2f71", // Telemagenta
Secondary = "#B5AADC", // Wisteria
Secondary = "#66617B", // Wisteria
Borders = "#100538", // Russian Violet
Background = "#070217", // Rich Black

View File

@@ -7,7 +7,7 @@ const tokens = createTokens({
color: {
purpleDark: "#070217",
purple: "#100538",
purpleGray: "#B5AADC",
purpleGray: "#66617B",
telemagenta: "#cc2f71",
white: "#ffffff",
black: "#000000"
@@ -26,7 +26,7 @@ const jellifyConfig = createTamagui({
themes: {
dark: {
background: tokens.color.purpleDark,
borderColor: tokens.color.purple,
borderColor: tokens.color.purpleGray,
color: tokens.color.white
},
light: {