@atlaskit/logo
Version:
A logo is a visual representation of a brand or app. It can be a word, an image, or a combination of both.
24 lines • 635 B
JavaScript
import { getColorsFromAppearance } from './get-colors-from-appearance';
export const getColorsForLoom = (appearance, colorMode) => {
let iconColor = getColorsFromAppearance(appearance, colorMode).iconColor;
let textColor = getColorsFromAppearance(appearance, colorMode).textColor;
if (colorMode === 'dark') {
switch (appearance) {
case 'brand':
iconColor = '#625DF5';
textColor = '#EFF0FF';
break;
}
} else {
switch (appearance) {
case 'brand':
iconColor = '#625DF5';
textColor = '#252434';
break;
}
}
return {
iconColor,
textColor
};
};