@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
25 lines (22 loc) • 375 B
JavaScript
import { tokens } from '@equinor/eds-tokens';
const {
colors: {
infographic: {
primary__moss_green_13: {
rgba: primary13
},
primary__moss_green_100: {
rgba: primary100
}
}
}
} = tokens;
const primary = {
background: primary13,
entities: {
progress: {
background: primary100
}
}
};
export { primary };