constant.js 779 Bytes
Newer Older
陈龙's avatar
陈龙 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
import MySQLIcon from '../assets/mysql.png';
import SQLServerIcon from '../assets/sqlserver.png';
import WebAPIIcon from '../assets/webapi.png';

const tagColors = [
  'rgb(129, 134, 143)',
  'rgb(41, 114, 244)',
  'rgb(0, 163, 245)',
  'rgb(69, 176, 118)',
  'rgb(222, 60, 54)',
  'rgb(248, 136, 37)',
  'rgb(189, 160, 20)',
  'rgb(154, 56, 215)',
  'rgb(221, 64, 151)',
];
const tagBackgroundColors = [
  'rgb(220, 223, 228)',
  'rgb(214, 229, 255)',
  'rgb(214, 241, 255)',
  'rgb(211, 243, 226)',
  'rgb(255, 220, 219)',
  'rgb(255, 236, 219)',
  'rgb(255, 245, 204)',
  'rgb(251, 219, 255)',
  'rgb(255, 219, 234)',
];
const sourceIconMap = {
  mysql: MySQLIcon,
  sqlserver: SQLServerIcon,
  webapi: WebAPIIcon,
};
export { tagColors, tagBackgroundColors, sourceIconMap };