diff --git a/.changeset/fresh-donuts-love.md b/.changeset/fresh-donuts-love.md new file mode 100644 index 0000000000..a9c002f23f --- /dev/null +++ b/.changeset/fresh-donuts-love.md @@ -0,0 +1,5 @@ +--- +"@marigold/theme-core": patch +--- + +feat: add new bluer blue color palette to core theme diff --git a/themes/theme-core/src/tokens.ts b/themes/theme-core/src/tokens.ts index 411177648f..078dc77e58 100644 --- a/themes/theme-core/src/tokens.ts +++ b/themes/theme-core/src/tokens.ts @@ -85,17 +85,17 @@ const red = { } as const; const blue = { - '50': '#f1f4ff', - '100': '#e5e8ff', - '200': '#ced5ff', - '300': '#a7b1ff', - '400': '#767fff', - '500': '#3f42ff', - '600': '#2118ff', - '700': '#1007fa', - '800': '#0d05d2', - '900': '#0c06ac', - '950': '#000088', + '50': '#eff6ff', + '100': '#dbeafe', + '200': '#bfdbfe', + '300': '#93c5fd', + '400': '#60a5fa', + '500': '#3b82f6', + '600': '#2563eb', + '700': '#1d4ed8', + '800': '#1e40af', + '900': '#1e3a8a', + '950': '#172554', } as const; export const colors = {