vega-frontend-monorepo/libs/tailwindcss-config/src/vega-colours.js
Elmar 5a764d190f
Feat/1416 tx detail (#1953)
* chore(explorer): add new vega colours to tw config

* feat(explorer): add new nested data list component

* feat(explorer): abstract page header with copy to new component

* feat(explorer): update styles tx details page

* fix(explorer): linting errors

* fix(explorer): fix txs type

* fix(explorer): fix strong typing

* fix(explorer): fix styling error for e2e test
2022-11-07 15:36:39 +00:00

39 lines
559 B
JavaScript

const VegaColours = {
yellow: {
DEFAULT: '#D7FB50',
dark: '#9BE106',
},
pink: {
DEFAULT: '#FF077F',
dark: '#CF0064',
},
green: {
DEFAULT: '#00F780',
dark: '#00D46E',
},
blue: {
DEFAULT: '#0075FF',
dark: '#0046CD',
},
purple: {
DEFAULT: '#8028FF',
dark: '#5D0CD2',
},
dark: {
100: '#161616',
200: '#404040',
300: '#8B8B8B',
400: '#C0C0C0',
},
light: {
100: '#F0F0F0',
200: '#D2D2D2',
300: '#A7A7A7',
400: '#626262',
},
};
module.exports = {
VegaColours,
};