Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT-1092]: Update color names and box-shadows to match Design-System #1143

Merged
152 changes: 108 additions & 44 deletions dashboard/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,51 +6,115 @@ module.exports = {
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
primary: '#008484',
secondary: '#065555',
komiser: {
100: '#F5FDFD',
120: '#e5f8f8',
130: '#E2F6F6',
150: '#DFF5F5',
200: '#CCF2F2',
300: '#99E5E5',
400: '#66D9D9',
500: '#33CCCC',
600: '#008484',
700: '#065555'
},
info: {
600: '#387BEB'
},
warning: {
100: '#FFF5DA',
600: '#EDC16B'
},
error: {
100: '#FFE8E8',
600: '#DE5E5E',
700: '#ae4242',
900: '#362033'
},
success: {
100: '#E1FFE3',
600: '#56BA5B'
},
black: {
100: '#F4F9F9',
130: '#F4F2F7',
150: '#F5F5F5',
170: '#EDEBEE',
200: '#CFD7D7',
300: '#95A3A3',
400: '#697372',
800: '#0C1717',
900: '#070011'
}
colors: {
black: '#000000',
white: '#FFFFFF',
cyan: {
50: '#ECFAFA',
100: '#DFF5F5',
200: '#CCF2F2',
300: '#99E5E5',
400: '#66D9D9',
500: '#33CCCC',
600: '#2AA7A7',
700: '#208282',
800: '#175D5D',
900: '#0E3838',
950: '#051313'
},
darkCyan: {
50: '#EDFAFA',
100: '#E2F6F6',
200: '#B6EAEA',
300: '#63CBCB',
400: '#2EA8A8',
500: '#008484',
600: '#006D6E',
700: '#065555',
800: '#004344',
900: '#002E2F',
950: '#00191A'
},
gray: {
50: '#F4F9F9',
100: '#F4F2F7',
200: '#EDEBEE',
300: '#CFD7D7',
400: '#B3BDBD',
500: '#95A3A3',
600: '#7F8B8B',
700: '#697372',
800: '#515959',
900: '#3A4040',
950: '#0C1717'
},
red: {
50: '#FFE8E8',
100: '#F7D1D1',
200: '#F2BABA',
300: '#EDA3A3',
400: '#E37575',
500: '#DE5E5E',
600: '#BF4F4F',
700: '#9D4040',
800: '#7B3131',
900: '#592222',
950: '#371313'
},
green: {
50: '#EEFDEE',
100: '#E1FFE3',
200: '#CAF5CA',
300: '#A3E7A6',
400: '#81CF84',
500: '#56BA5B',
600: '#489E4E',
700: '#3B8240',
800: '#2E6632',
900: '#214A24',
950: '#142E16'
},
orange: {
50: '#FFF8EB',
100: '#FFF5DA',
200: '#FCE0AC',
300: '#F6C879',
400: '#ECAD4E',
500: '#ED8F2B',
600: '#D5721F',
700: '#A85924',
800: '#844B2A',
900: '#664029',
950: '#422D24'
},
blue: {
50: '#E8EFFD',
100: '#D4E4FF',
200: '#ACC7F7',
300: '#72A1F1',
400: '#558EEE',
500: '#387BEB',
600: '#2F69C6',
700: '#2656A3',
800: '#1D4380',
900: '#14305D',
950: '#0B1D3A'
},
purple: {
50: '#F7F6FE',
100: '#EDE8FC',
200: '#E0DBFB',
300: '#C9BDF4',
400: '#AF99EA',
500: '#9470E0',
600: '#8157C5',
700: '#714DA6',
800: '#5F4585',
900: '#4B3966',
950: '#372B4A'
}
},
extend: {
fontFamily: {
sans: [
'Noto Sans',
Expand Down