refactor(theme): remove unused bits to avoid confusion

This commit is contained in:
Deen Denno 2021-09-07 17:04:07 -05:00 committed by Gert Hengeveld
parent b6a1662e40
commit b6d6acee44

View File

@ -1,36 +1,19 @@
/**
* Interaction Testing Theme
* PLACEHOLDER until SB is updated <3
*/
interface colors {
pure?: {
green?: string;
red?: string;
ochre?: string;
blue?: string;
lightBlue?: string;
gray?: any;
};
calm?: {
seafoam?: string;
};
}
export const colors: colors = {
pure: {
green: '#66BF3C',
red: '#FF4400',
ochre: '#E69D00',
blue: '#1EA7FD',
lightBlue: 'rgba(30, 167, 253, 0.1)',
gray: {
300: '#EEEEEE',
500: '#CCCCCC',
},
},
calm: {
seafoam: '#F6F9FC',
},
};
export const theme = {