@geist-ui/react
Version:
Modern and minimalist React UI library.
15 lines • 455 B
JavaScript
export var getBrowserColors = function getBrowserColors(invert, palette) {
return invert ? {
color: palette.background,
barBgColor: palette.foreground,
inputBgColor: palette.accents_8,
borderColor: palette.accents_7,
titleColor: palette.accents_2
} : {
color: palette.foreground,
barBgColor: palette.background,
inputBgColor: palette.accents_1,
borderColor: palette.border,
titleColor: palette.accents_5
};
};