@samuellima99/colors
Version:
Pacote de cores da agility
53 lines (50 loc) • 1.52 kB
text/typescript
;
const purpleColors = {
'agility-purple-10': '#F1EFFD',
'agility-purple-20': '#E2E0FC',
'agility-purple-30': '#D4D0FB',
'agility-purple-40': '#C6C1F9',
'agility-purple-50': '#B7B1F7',
'agility-purple-60': '#A9A1F6',
'agility-purple-70': '#9B92F5',
'agility-purple-80': '#8D82F3',
'agility-purple-90': '#7E73F1',
'agility-purple-100': '#7063F0',
'agility-purple-120': '#4D4BB2',
};
const orangeColors = {
'agility-orange-10': '#FFF1EA',
'agility-orange-20': '#FFE2D4',
'agility-orange-30': '#FFD4BF',
'agility-orange-40': '#FFC6A9',
'agility-orange-50': '#FFB794',
'agility-orange-60': '#FFA97F',
'agility-orange-70': '#FF9B69',
'agility-orange-80': '#FF8D54',
'agility-orange-90': '#FF7E3E',
'agility-orange-100': '#FF7029',
};
const grayColors = {
'gray-10': '#E8E8E8',
'gray-20': '#D0D0D0',
'gray-30': '#B9B9B9',
'gray-40': '#A1A1A1',
'gray-50': '#8A8A8A',
'gray-60': '#727272',
'gray-70': '#5B5B5B',
'gray-80': '#434343',
'gray-90': '#2C2C2C',
'gray-100': '#141414',
};
const semanticColors = {
message: '#0094FF',
success: '#00AA4D',
warning: '#FFBF00',
error: '#D92A21',
information: '#3C4C70',
};
const utilitiesColors = {
'background-light-mode': '#FFFFFF',
};
const colors = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, purpleColors), orangeColors), grayColors), semanticColors), utilitiesColors);
exports.colors = colors;