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 };
-
陈龙 authored48ac1217