Skip to content

Commit

Permalink
feat!: Replace crimson with pink colorset
Browse files Browse the repository at this point in the history
Adds true Crimson color to the colorset, renaming crimson to Pink.

BREAKING!: Changes behavior of crimson colors of previous builds,
Crimson renamed to Pink in this version.
  • Loading branch information
kevintyj committed Dec 1, 2023
1 parent 34991dd commit 131fb12
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# dist
.solid
.output
.vercel
.netlify
netlify
# commited dist files
!dist
lib

# dependencies
/node_modules
node_modules

# IDEs and editors
/.idea
Expand All @@ -21,3 +18,6 @@ gitignore
# System Files
.DS_Store
Thumbs.db

# Test files
coverage
5 changes: 3 additions & 2 deletions src/functions/colorConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ export const ScalePrimObj = {
BLUE: ['#E9EEFE', '#264FE3', '#061148'],
INDIGO: ['#EBEDFB', '#4624D3', '#0B003D'],
VIOLET: ['#F0E9F8', '#6C1CDB', '#1c063d'],
CRIMSON: ['#FAEAF2', '#E03780', '#420518'],
WINE: ['#FDE9ED', '#9d1635', '#32000A'],
PINK: ['#FAEAF2', '#E03780', '#420518'],
CRIMSON: ['#FCECEF', '#d22952', '#3D0314'],
WINE: ['#FDE9ED', '#b91d42', '#32000A'],
RED: ['#FEEEEC', '#CA2331', '#380004'],
SUN: ['#FEF2EE', '#ea3e33', '#460405'],
ORANGE: ['#FDF6ED', '#fb7912', '#52160B'],
Expand Down

0 comments on commit 131fb12

Please sign in to comment.