Skip to content

Commit

Permalink
feat: Set MaBulle colors palette in white label
Browse files Browse the repository at this point in the history
This commit applies the MaBulle palette for Primary colors and Grey
colors. Other colors are not used by the app so we ignored them
  • Loading branch information
Ldoppea committed Sep 20, 2023
1 parent 644a260 commit af25f4a
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions white_label/brands/mabulle/js/ui/palette.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export const palette = {
Primary: {
'50': '#f7faff',
'100': '#eaf3ff',
'200': '#d4e6ff',
'300': '#b3d3ff',
'400': '#91bfff',
'500': '#579eff',
'600': '#297ef2',
'700': '#0f5cc7',
'800': '#0b3672',
'900': '#081d39',
'50': '#f5fbff',
'100': '#e9f5ff',
'200': '#d4ebff',
'300': '#bcdfff',
'400': '#7ac7ff',
'500': '#0094ff',
'600': '#0066ff',
'700': '#0054d2',
'800': '#0047b2',
'900': '#002b6c',
ContrastText: '#fff'
},

Expand Down Expand Up @@ -83,20 +83,20 @@ export const palette = {
},

Grey: {
'50': '#f9fafb',
'100': '#f4f5f6',
'200': '#eceff1',
'300': '#dde0e3',
'400': '#bfc3c7',
'500': '#9da2a6',
'600': '#7c8086',
'700': '#5d6169',
'800': '#3e424a',
'900': '#1d212a',
A100: '#d3d6d8',
A200: '#a7abaf',
A400: '#2c3039',
A700: '#5d6169'
'50': '#fbfbff',
'100': '#f4f4fa',
'200': '#e8e9f1',
'300': '#d4d7e2',
'400': '#babfce',
'500': '#9098ad',
'600': '#5f6a87',
'700': '#465475',
'800': '#314164',
'900': '#1d2e55',
A100: '#d4d7e2',
A200: '#9098ad',
A400: '#1d2e55',
A700: '#5f6a87'
},

Common: {
Expand Down

0 comments on commit af25f4a

Please sign in to comment.