@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 • 677 B
JavaScript
import { getColorsFromAppearance } from './get-colors-from-appearance';
export var getColorsForLoom = function getColorsForLoom(appearance, colorMode) {
var iconColor = getColorsFromAppearance(appearance, colorMode).iconColor;
var 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: iconColor,
textColor: textColor
};
};