@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
36 lines (33 loc) • 609 B
JavaScript
import { tokens } from '@equinor/eds-tokens';
const {
colors,
spacings: {
comfortable
},
typography: {
navigation
}
} = tokens;
const topbar = {
height: '64px',
background: colors.ui.background__default.rgba,
typography: navigation.menu_title,
spacings: {
left: comfortable.large,
right: comfortable.large,
top: comfortable.small,
bottom: comfortable.small
},
border: {
type: 'bordergroup',
bottom: {
style: 'solid',
color: colors.ui.background__light.rgba,
width: '2px'
}
},
modes: {
compact: {}
}
};
export { topbar };